Copy this code and paste it in your HTML
$file_name = "/path/to/file";
$file_type = array( 'K', 'M', 'G' );
for ( $t = 0; $size > 1024; $t++ )
{
$size /= 1024;
$file_size = round ( $size, 1 ) . ' ' . $file_type[ $t ] . 'B';
}
echo "\$file_size = $file_size";