Page 2 of 2

Posted: Wed Oct 20, 2004 3:08 pm
by Weirdan
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>';
}
//...........

Posted: Wed Oct 20, 2004 3:28 pm
by Christopher
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.

Posted: Wed Oct 20, 2004 3:34 pm
by ljCharlie
Weirdan, thanks! I'll try to implement that.

ljCharlie