Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use the getimagesize function to get the height and with of an image. I'm pulling the image URL from a database. (The field ProjectURL contains a line such as xxx.jpg). However I'm getting an error.

Code:

$testing = "projects/'.$row['ProjectURL'].'";
    list($width, $height, $type, $attr) = getimagesize($testing);
    echo "Image width " .$width;
echo "<br />";
echo "Image height " .$height;

Error:

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING

share|improve this question
2  
Your first ' should be a ". Use a decent IDE or editor with syntax highlighting, it will make finding such errors much easier – Pekka 웃 Jan 19 '11 at 23:49

1 Answer

up vote 5 down vote accepted

it's because you are mixing single and double quotes...

this should be ok:

$testing = "projects/" . $row['ProjectURL'];
list($width, $height, $type, $attr) = getimagesize($testing);
echo "Image width " . $width;
echo "Image height " . $height;

You might also have noticed that I removed the echo "";... this one was useless :)

share|improve this answer
echo "<br />"; is not useless , otherwise it echoes them on the same line :) the better approach would be echo "Image width " . $width. "\n"; – Aviatrix Jan 19 '11 at 23:55
Last time I saw the article, there was no "<br />" but a \n... :) – Paul Jan 20 '11 at 8:13
Thanks very much Paul, it was the mixture of quotes. Working now, cheers :D – Ian Jan 20 '11 at 8:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.