How can I check for height and width before uploading image, using PHP.
Must I upload the image first and use "getimagesize()"? Or can I check this before uploading it using PHP?
<?php foreach ($_FILES["files"]["error"] as $key => $error) { if( $error == UPLOAD_ERR_OK && $_FILES["files"]["size"][$key] < 500000 && $_FILES["files"]["type"][$key] == "image/gif" || $_FILES["files"]["type"][$key] == "image/png" || $_FILES["files"]["type"][$key] == "image/jpeg" || $_FILES["files"]["type"][$key] == "image/pjpeg" ){ $filename = $_FILES["files"]["name"][$key]; if(HOW TO CHECK WIDTH AND HEIGHT) { echo '<p>image dimenssions must be less than 1000px width and 1000px height'; } } ?>