Hi
I need to query the database, to get the info on row 1 and row 2, so that I can display it on that table. It is a series of tables, like the one below, which show the following results:
1st table: row1 and row2
2nd table: row3 and row4
3rd table: row5 and row6
...
This is what i´ve done:

$result = sql_query("select * from projectos ORDER BY id DESC", $dbi);
while($row = mysql_fetch_object($result)) {
echo"";
}
How can i display those rows?
Thank you for any help.