//LOAD IMAGE TABLE
$filename = $_FILES["file"]["name"];
$image_info = getimagesize($filename);
$image_width = $image_info[0];
$image_height = $image_info[1];
echo "filename1 : ".$_FILES["file"]["name"];
echo "filename : ".$filename;
echo "image info : ".$image_info[0];
echo "image info : ".$image_info[1];
echo "image width : ".$image_width;
echo "image height : ".$image_height;
filename1 : feature1.png
filename : feature1.png
image info :
image info :
image width :
image height :
Image is too small
Hello,
U wonder why I cannot see width & height being printed out?
Thanks before.