This is currently what the code looks like
while($row = mysql_fetch_array($result))
{
echo "<tr><td><strong><font color=#ee4d9>" . $row['ID'] . "</font></strong></td><td align=right><a href=edit.php?number=" . $row['ID'] . ">Edit</a> | <a href=remove.php?number=" . $row['ID'] . ">Delete</a></td></tr>";
echo "<tr><td bgcolor=#FFFFFF colspan=3><strong>" . $row['Name'] . "</strong><br>Date: " . $row['Date'] . "<br>Time: " . $row['Time'] . "<br></td>";
and the date shows as 2009-08-01, how do you change the format that it is displayed on the page?
while($row = mysql_fetch_array($result))
{
echo "<tr><td><strong><font color=#ee4d9>" . $row['ID'] . "</font></strong></td><td align=right><a href=edit.php?number=" . $row['ID'] . ">Edit</a> | <a href=remove.php?number=" . $row['ID'] . ">Delete</a></td></tr>";
echo "<tr><td bgcolor=#FFFFFF colspan=3><strong>" . $row['Name'] . "</strong><br>Date: " . $row['Date'] . "<br>Time: " . $row['Time'] . "<br></td>";
and the date shows as 2009-08-01, how do you change the format that it is displayed on the page?