my script is showing 4 decimal places ie 8.3423
i only want it to show 2 decimal places ie 8.34
what do i have to change on my script?
this is the script
EOF;
$uSql = "
SELECT...
basically this php script outputs everything to 4 decimal points
ie 9.3434
i want everything to show with only 2 deicmal points
ie 9.34
i know it has something to do with number_format
here is all the number_format cods from the script
how do i change it to display only 2 decimal point
I...