Forum Moderators: coopster
as far as how the output works, I usually do this
ouput my open table tag before the loop and then close it after, out put each individual row inside the loop
echo "<table>";
while ($row = mysql_fetch_array($query)) {
echo '<tr><td>',$row[somecol1],'</td><td>',$row[somecol2],'</td></tr>';
}
echo "</table>";
that is a basic example but that's how it works.