$conn = odbc_connect("yourODBCname", "", "");
$q = "select * from table";
$results = odbc_do($conn, $q);
while(odbc_fetch_into($results, &$row))
{
// HTML-tags for cell
print($row[0]);
// HTML-tags for cell
print($row[1]);
//etc
}
Using a html-table, do put the start of table code before the while and insert the html codes the way you want the cells to show, at end put the ending of the table.