I guess I have just either made my page just a little too simple it complicates things, or I just don't know about something. What this script does is it calls to my Blog database and displays all the dates for when I have something posted. From there, I want people to click on the date to then view the entry. But I'm just not sure how to pass the date to the next php page so the info can be displayed.
PHP:
<?php
$conn = mysql_connect("localhost", "read", "");
mysql_select_db("Blog",$conn);
$sql = "SELECT ID, date_format(date, '%b %e, %Y at %r') as fmt_date, text, title FROM blogTable order by date desc";
$result = mysql_query($sql, $conn) or die(mysql_error());
while ($newArray = mysql_fetch_array($result)) {
$date = $newArray['fmt_date'];
echo "<a href=\"$date\" target=\"_blank\">$date</a><br><br>";
}
?>