I think she was more asking for an explanation of exactly how parameters are passed to a url string--being a newbie myself, this is something I don't have a grasp on yet either.
My particular problem in this area is such: I'm creating a photo album that prints the thumbnail and the date into a cell in a 3x5 table. I have the table (somewhat) down. However, I want to have the picture link to a popup that includes the full-sized picture and all of the other information linked to that particular picture. What I currently have is this:
echo '<td><font size=-2>';
echo "<img src=".$a_row['url']." width=86 height=64 border=0><br />".$a_row['dateofpic'];
echo '</font></td>';
I assume what I need to do the popup is something more like this:
echo '<td><font size=-2>';
echo "<a href=\"$PHP_SELF?picid=$a_row['id']\" target=_blank><img src=".$a_row['url']." width=86 height=64 border=0></a>br />".$a_row['dateofpic']";
echo '</font></td>';
My problem is that I then need to use that popuped window to pull information from the database. I know how to do the MySQL query--what I need to know is how to make the actual page hold the query.
I hope I've explained it sufficiently--if I haven't, I'll try again. laughs