Your link isn't loading. If I understand your question correctly, the answer is that it has more to do with html than it does php.
for example, if you're looping through a db query result...
echo "<table>";
while ($row = mysql_fetch_array($result) ){
extract($row);
echo "<tr><td>".$column1."</td><td>".$column2."</td></tr>";
}
echo "</table>";
Would give you a table with however many rows there were in your query result, and 2 columns.
Is that what you were looking for?