Answers for "how to inset image in php with limited size"

PHP
2

get image size php

$image_size = $_FILES["inputfilename"]["size"];
/*Not From Form*/
$img_size = getimagesize("imagepath"); // returns an array that is filled with info
print_r($img_size);
Posted by: Guest on June-14-2021
1

php.ini upload image size

##put these directives in a php.ini file in the root of files
upload_max_filesize = 10M
post_max_size = 10M
Posted by: Guest on May-08-2021

Code answers related to "how to inset image in php with limited size"

Browse Popular Code Answers by Language