I've got a price on a item, say $119.00 and i want to apply a discount say 15% so i divide the price by 1.15 to get the new price - however it sets the price so say $103.4 not $103.40

how can i fix this?

I've got

$NewPrice = round(($Price / $Discount), 2); 
    Write a Reply...