echo "<table>";
while($result = $db->fetch_array($query))
{
echo "<tr>";
echo "<td>" . $result['username'] . "</td>";
echo "</tr>";
}
echo "</table>";
Something like this? However echo is causing the usual problems, I have 2 tables right now on the page.. Do you mind giving me an example?