Dream Master
Dream Master

Reputation: 71

php Image upload file size limit?

I have an image upload form for a client that I am having an issue with. I wish to set the file size to a maximum of 5.1 mb. However everything over 2.0 mb fails my if statement. below is the portion of the code I am using to qualify the file size. Are there limits to file size handlers that I am not aware of or does anyone see anything wrong with this expression? I am sure the expression is correct, as it works perfectly fine for images under 2mb. Thanks in advance.

if (($_FILES["file"]["size"][$i] < 5100000)     
                && in_array($file_extension, $validextensions)) 

Upvotes: 0

Views: 2577

Answers (1)

Alec von Barnekow
Alec von Barnekow

Reputation: 1001

Did you check your php.ini? The default upload_max_filesize is 2MB.

Upvotes: 1

Related Questions