OK, I figured it out. I was just having trouble converting the MYSQL timestamp into a readable format. Just took me awhile to process the solution, here's what I came up with - hope it helps others.
<?
//display datetime from mysql format
function mysql_timestamp_to_time($dates)
{
return mktime( intval(substr($dates,8,2)), intval(substr($dates,10,2)) , intval(substr($dates,12,2)), intval(substr($dates,4,2)), intval(substr($dates,6,2)), intval(substr($dates,0,4)) );
}
$link = mysql_result($result,$i,"link");
$release_date = mysql_result($result,$i,"release_date");
$new_release_date = mysql_timestamp_to_time($release_date);
PRINT "<font size=\"-2\" face=\"arial\" color=\"#487CE8\"><b>".date("F jS, Y",$DDD)."</b></font> <font size=\"-1\" face=\"arial\"><br><a href=\"pressreleases.php3?qs1=$unique_id\"><strong>$link</strong></a></p></font>";
?>
Result:
July 19th, 2001
Press Release Title shows up here
Jamie