$foot = mysql_query("SELECT count(*)
FROM tblQA
WHERE intResponseID = ''
AND cCategory = 'Football' as qcount,
(SELECT max(dPostDateTime)
FROM tblQA
WHERE intResponseID = ''
AND cCategory = 'Football') as lastq");
$football = mysql_fetch_array($foot);
echo "<td class='forum'>" . $footbll['qcount'] . "</td>";
echo "<td class='forum'>" . $footbll['lastq'] . "</td>";
This doesn't display anything in my table. I didn't post the entire HTML code, i have the table structure fine.