Hi there,
I'm a novice, so please bear with me. My array results are working fine, and I'd like to display them in a tabular format, but I can't seem to get it to work.
for ($i=0; $i <$num_results; $i++){
$row = mysql_fetch_array($result);
echo "<p><font size=2><strong>".($i+1).". Alias: </strong></font>";
echo htmlspecialchars( stripslashes($row["alias"]));
echo "<br><strong><font color=green>Alias Destination: </font></strong>";
echo htmlspecialchars( stripslashes($row["destination"]));
echo "<br><strong><font color=blue>Username: </font></strong>";
echo htmlspecialchars( stripslashes($row["username"]));
echo "</p>";
I'd like Alias, Alias Destination & Username to be column headings & the results to display underneath. If anyone can point me in the right direction, I'd really appreciate it! Thanks - georgie