Quote:
Originally Posted by Boofo
Any examples? 
|
PHP Code:
// If you've got a percentage value like this:
$percentage = 50.05;
// You can lob off the last two digits:
$lasttwo = substr($percentage, -2);
// And then see if that equals 00
if ($lasttwo == '00')
{
// intval returns an integer value
$percentage = intval($percentage);
}
// echo it out, you'll see that if $lasttwo == 00, it returns an int
echo $percentage;
There's probably an infinitely more simple method of doing it, lol - but it works.