// THIS METHOD ROUNDOFF THE PRICE function roundoff($value) { $value = $value * 20; $near_int = round($value); $round = $near_int / 20; return $round; }