Tuesday 26 July 2016

PHP Image size is less than 1mb

1MB == 1048576 bytes

1MB == 1024 Kbytes

if($_FILES['name']['size'] > 1048576){
  //You can not upload this file
}

 

No comments:

Post a Comment