Hello everyone
im hoping someone may be able to advise me how i would complete this task?
well the code i have is shown below:
While ($rec = mysql_fetch_array($result)) {
echo("<tr>");
echo("<td align=\"center\"><A HREF=\" LMoreProgInfo.php \">" . $rec["prog_title"] . "</A></td>");
echo("<td><div align=\"center\">" . $rec["prog_ucas"] . "<br>\n</div></td>");
echo("<td><div align=\"center\">" . $rec["prog_type"] . "<br>\n</div></td>");
What i want to do is to be able to pass the prog_title value clicked on to the LMoreProgInfo.php page
so that i can create SQL statements using that value to show more data about it?
Will i need to start a session at the top of page, then register the value somewhere and somehow pass that variable when the user clicks on the link?
any help on this problem would be greatly apprecaited
thanks in advance
snoopgreen