Hi Guys, The original code below would output a number with 2 or four decimal places. Code: --------- (str_replace(',', '', $row['price']) * 1.1 ) . "\n"; --------- What I need to do is round it up/down to 2 decimal places. I tried the below code and it was a disaster, it displays a number that...
More...