Hey, on division my answer shows up to 66.6666667 . How to a limit it to 66.7 ?
checkout round()
Cgraz
So would $number=round($number) work?
you also need to specify the precision of the round...
If $number=3.1234
then
$number_new=round($number,1);
would yield 3.1
$number_new=round($number,2);
would yield 3.12
etc etc....
Also check out number_format
Diego