Hiya,
I have a series of if statements ina round that are called in depending on which option is checked, these calcuate a figure entered by the user if i used a function such as
function my_rounder($value)
{
$buffer = $value * 100;
$rounded = round($buffer);
$buffer = $rounded / 100;
return $buffer;
}
what would be the best way to implement it to all 3 if statements?
Peter