Yes ma'am, same thing.... only different🙂 I recall just reading a post you made asked about html table tag parameters, so I'm assuming that you've probably figured it out. However, just in case:
<?php
// code to connect to mysql and execute the select query
echo "<table>\n";
while ($myrow = mysql_fetch_array($myresult)) {
printf("<tr>\n<td>\n%s\n</td>\n<td>\n%s\n</td>\n<td>\n%s\n</td>\n</tr>\n", $myrow[0], $myrow[1], $myrow[2]);
}
echo "</table>\n";
?>
This will quite happily fill your table with all the info returned. The "%s" is the placeholder replaced by the variables which make up the rest of the printf() arguments. There must be as many "%s"'s as there are variables, or else everything get's loused up. You can use any valid <tr> or <td> paramter in the printf() function, just remember to escape the quote if you place the param's in quotes.
ie. <td align="center"> becomes <td align=\"center\">
HTH.
Geoff A. Virgo