I tried and does not seem to be working for me
///////////////////////My Code Begin
$qry = "SELECT location, channel, sport, title, address, DATE_FORMAT(date, '%c %e %Y'), name, phone, description, url
FROM public_events
WHERE id = '$pid'
";
$find = mysql_query($qry, $db) or die (mysql_error());
$data = mysql_fetch_array($find);
///////////////////////My Code End
So the variable is called $data[date] and it returns null
What am I doing wrong?