PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
Weirdan
Moderator
Posts: 5978 Joined: Mon Nov 03, 2003 6:13 pm
Location: Odessa, Ukraine
Post
by Weirdan » Wed Oct 20, 2004 3:08 pm
ljCharlie wrote: I didn't paste the code PHP code but the full image are suppose to be displayed be low this line:
Code: Select all
//****************************************Display the full picture below here************************************
well, I believe it should be something like this:
Code: Select all
//*********************************Display the full picture below here********************************
if(!empty($_GETї'image_id']) )
echo '<img src="images/'.$_GETї'image_id'].'.png">';
Code: Select all
//..........
foreach($images as $image) {
echo '<a href="index.php?image_id=' . $image . '&sectionID='.$_GETї'var'].'" target="_parent">';
// display img tag for thumbnail picture here
echo '</a>';
}
//...........
Christopher
Site Administrator
Posts: 13596 Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US
Post
by Christopher » Wed Oct 20, 2004 3:28 pm
I don't know if it was mentioned, but you should take a look at Harry Fueck's ScriptServer. I does this sort inter-frame call.
ljCharlie
Forum Contributor
Posts: 289 Joined: Wed May 19, 2004 8:23 am
Post
by ljCharlie » Wed Oct 20, 2004 3:34 pm
Weirdan, thanks! I'll try to implement that.
ljCharlie