Contact: aviboots(AT)netvision.net.il
39,882 questions
51,808 answers
573 users
$image_array = getimagesize("http://cprogramming.bootzlabs.com/images/ipage.png"); echo "width: " . $image_array[0] . "<br />"; echo "height: " . $image_array[1] . "<br />"; echo $image_array[3] . "<br />"; /* run: width: 157 height: 600 width="157" height="600" */
list($width, $height) = getimagesize("http://cprogramming.bootzlabs.com/images/ipage.png"); echo "width: " . $width . "<br />"; echo "height: " . $height . "<br />"; /* run: width: 157 height: 600 */