Answers for "increase file size upload php"

PHP
2

change php max upload size

; Maximum allowed size for uploaded files.
upload_max_filesize = 40M

; Must be greater than or equal to upload_max_filesize
post_max_size = 40M
Posted by: Guest on April-21-2021
0

php check image size before upload

$image_size = $_FILES["inputname"]["size"];
if($image_size > 10000){
	echo "size too large";
}
Posted by: Guest on June-12-2021

Code answers related to "increase file size upload php"

Browse Popular Code Answers by Language