Quote:
Originally Posted by wordforge.net
Sorry about that, I was coming back to edit my reply, cause I had worked it out at this point.
Any chance of displaying to 2 decimal places rather than 8? 
|
ok do this
Find :
PHP Code:
if (($bbuserinfo['userid']) AND ($bbuserinfo['reputation']) AND ($bbuserinfo['posts'])) {
After Add :
PHP Code:
function round_to_penny($amount){
$string = (string)($amount * 100);
$string_array = split("\.", $string);
$int = (int)$string_array[0];
$return = $int / 100;
return $return;
}
Find :
PHP Code:
$ratio = round($bbuserinfo['reputation'] / $bbuserinfo['posts']) ;
Replace with
PHP Code:
$ratio = round_to_penny($bbuserinfo['reputation'] / $bbuserinfo['posts']) ;
should work, update me...