[Solved] Decimal -> Percent

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Mightywayne
Forum Contributor
Posts: 237
Joined: Sat Dec 09, 2006 6:46 am

[Solved] Decimal -> Percent

Post by Mightywayne »

I'm going to go ahead and just erase this embarrasment of a question.
Last edited by Mightywayne on Mon Sep 17, 2007 1:29 pm, edited 1 time in total.
xitura
Forum Newbie
Posts: 20
Joined: Fri Sep 07, 2007 11:25 am

Post by xitura »

Code: Select all

$number = 0.5;
echo $number * 100;
Post Reply