I hope I can explain this: I need to create a list of links from a table. I have them displayed, so that part is done. I need the links to pass info through the URL string to another page that will be dynamically constructed using that POST or GET data. I know how to do that part too. It is included that in the URL that has me stuck.
Here is my code so far:
$num_rows = mysql_num_rows($result);
if ($myrow = mysql_fetch_array($result)) {
echo "<DIV ALIGN=center><TABLE BORDER=0>\n";
do {
printf("<TR><TD><A HREF=d2models.php?ctPos=63&>%s</A></TD></TR>\n", $myrow["name"]);
} while ($myrow = mysql_fetch_array($result));
echo "</TABLE></DIV>\n";
}
Up there in where the link says "d2models.php?ctPos=63" I need to ad another paramter that is derived from the db info. It will be exactly the same as the "name". This will display a list of available spec homes, then when the user clicks on one of them, a page will be created. I have searched here and googled, but I am not sure what search terms will find the info I need.
Thanks for any direction!