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've used "ImageFlow" on my personal website, and what I want to do is that when you click on an image, another page opens with the ID of the image stored in a query-string like when you are using $_get in a form. For example: http://www.mywebsite.com/details.php?id=001
Then I'm going to use some databases to print some information on the page like:

Place: Lake Otawa
Date: 1/1-2011

And so on...
Thanks in advance :)

share|improve this question

1 Answer

up vote 2 down vote accepted

Hard to answer without any additional code. Where is the image id stored?

Guessing this would do:

<a href="http://domain.com/image.php?id=<?php echo $image_id;?>"><img src="image/path.jpg" target="_blank"/></a>
share|improve this answer
Take this as an example: <img src="img1.jpg" id="img1" longdesc="details.php?id=ID_GOES_HERE> How can I drag the ID from that without having to type it manually? Maybe this is not really necessary :D – Latze Feb 6 '11 at 17:38

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.