I think i know what you're trying to convey..
let's say your query to the database (I'll assume MySQL) is this:
$get_entries = mysql_query("select full_name, dob from people");
Now we want to loop through weach entry, and put each set of results in a different <tr> statement within an HTML table:
<?
echo "<table>\n";
while ($row=mysql_fetch_array($get_entries))
{
echo " <tr>\n";
echo " <td>$row[full_name]</td>\n";
echo " <td>$row[dob]</td>\n";
echo " </tr>\n";
}
echo "</table>\n";
is that what you were looking for?