in this example
$result = 2.33333333453
How could i remove the decimal and all the 3's and numbers after it, leaving only 2
$resultround = ROUND($result, 0);
not sure if thats the easiest way, but it will work
Cheers