Hello,
I am having problem with getimagesize() function.
In the script I was trying to get image size( height and width)
My code looked this way
$size = getimagesize($image_name);
$width = $size[0];
$height = $size[1];
both $width and $height returns empty string.
I have looked at
http://us3.php.net/manual/en/function.getimagesize.php
Also I tried to use function that they offer
sgetimagesize(filename) and that did not work either.
Images are not large
Any other suggestions?