Call me crazy, but I want to keep a small photo album (7 pictures) within the confines of a table. It gets more complicated, hence my question to all of you. Here is some background:
imagebrowser.php works outside the confines of the table perfectly, however,
The website I am working on calls http://www.xzy.com/home.php?page=album
home.php is nothing more than a big table that calls other pages for the content. On the side is a navigation, top is header, bottom is footer and of course there is a mainbody.
I want to run imagebrowser.php inside the mainbody section. Is there any way to do it?
The problem I can't figure out is I already send ?page=photo to home.php with
case 'photo';
include ('pages/photos/images/imagebrowser.php');
break;
and imagebrowser has its own set of photo ids it wants to add, imagebrowser.php?ind=6 :
<a href="<? echo $imagelist[$index] ?>" target="_blank"><image src="<? echo $imagelist[$index] ?>" class="imag"></a>
So does this make any sense?