ah thanks I found the commands 🙂.
now I have this problem:
$siz = filesize('downloads/' . $out)
if ((round($siz / (1024 1024), 1) < .1) == FALSE){$siz = round($siz / (1024 1024), 1) . ' MB';}
if ((round($siz / (1024), 1) < .1) == FALSE){$siz = round($siz / (1024), 1) . ' kb';}
if ((round($siz /, 1) < .1) == FALSE){$siz = $siz . ' bytes';}
I try to find the size in the correct naming (MB, kb or bytes), but this doesnt seem to work. what am I doing wrong here? 😕