can someone tell me how to get image width&height and then assign that value to variable.
i want to take the image width&height from the image url (ex. http://www.yahoo.com/logo.gif )
$size = getimagesize('http://www.yahoo.com/images/logo.gif'); echo 'width:' .$size[0]. '<br /> height:' .$size[1]. '<br />';
thank you sebby
sure, no problem.