Um, how would I split a number:
4.4444 so it would look like 4.4, remove the 3 last number...
There are several ways to approach this, but I would recommend that you look at the manual entry for the printf() function.
If it's always a number, you can use round() to round it to one decimal point...
$num = 4.444; echo round($num,1); //echos 4.4
---John Holmes...