do something like this:
$myvar = 108.333333333333
explode(".", $myvar);
That will put the number into an array like this: So the first part of the array is 108, and the second part of the array is 333333333333. So just do this:
echo $myvar[0]; //this will echo 108
Hope this helps!
Jason Rottman
Webmaster
Project Manager
www.stardefenders.com