I have the contents of a table that I would like listed. The fields should be in a column with headings.
Currently I have:
$query = mysql_query("SELECT Date, Time, Keyword, Position FROM logfile");
while ($row = mysql_fetch_array($query)) {
echo "<td><span class='style3b'>$row</span></td>\n";
echo "</tr>\n";
}
But I am not getting the output I hoped.
Can someone help me?