Answers for "validation on image size in php"

PHP
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 "validation on image size in php"

Browse Popular Code Answers by Language