THe script I want to modify shows file size like this
If file is more then 1024kb it shows size in MB, if it is less then 1024kb it shows size in KB. Is it possible with IF-ELSE function to show size only in kb?
Code:
$size = fsize($target_path);
Comment