function roundup($val){ $arr=explode(".",$val); $rval=$arr[0].".".substr($arr[1],0,2); //echo substr($arr[1],0,2); return $rval;}