I have created a webpage using html/php which contains a form to collect informtaion which I am storing in a mysql database, each record in the database has the date stored automatically, I want to be able to retrieve this information from the database and display is on the webpage as a list of the dates and then I want to make each date a hyperlink so that when click it will show all the data stored in that form on that specific date.
so far I have been able to retrieve the list of the dates using the following (this works as i need it to) :
$query="SELECT Date FROM form";
$result=mysql_query($Query,$db);
while ($dbRow=mysql_fetch_array($Result))
{
$theDate=$dbRow["Date"];
echo "$theDate<br>";
}
I can not figure out at all how to make each of these dates into a hyperlink... any advice anyone?? thanks!