i have this script that calculates the file size in kilobytes..
by deviding the calc_size (in bytes) by 1024... :
$calc_size = ($_FILES['userfile']['size'] / 1024);
this works..
the result is (for instance) 0,333333333
my question:
how to get rid of those digits behind the comma and
make it print like 0,33
?