Hi guys.
I am trying to create a list of dynamic hyperlinks that will then pass the correct parameters to the next page. I am extracting a list of story titles from a database, and creating a table via a standard "while" loop.
The code I am so far putting into one of the table cells is:
<td width=\"200\"><a href=".'Stories.php?' . $row["Title"] . ">$Title</a></td>
This doesn`t produce any errors, and does indeed call the intended page, so I think the error may be in the way I am pulling this passed parameter in on the target page. I have tried using GET:
$Title = $_GET["Title"];
But I know this is a form function, not a hyperlink one. So how do I get this to work? I know I could create form buttons to do it - Ive done that in the past - but this time Id like to learn how to generate these dynamic hyperlinks.
Thanks in advance guys.
Regards,
Al