Its good that you dont just want the answers on a plate. I for one love a challenge. Admittedly sometimes a program will not go right and I just want it over with but thats just me.
ok the basic code would be something like
<?
echo "<TABLE border=1 cellpadding=2 cellspacing=2>\n";
for( $loop=0; $loop<4; $loop++ )
{
echo "<TR>\n";
for ( $loop2=0; $loop2<4; $loop2++ )
{
echo "<TD>";
// output your field here.
echo " </TD>\n";
}
echo "</TR>\n";
}
echo "</TABLE>\n";
?>
It will generate a 4x4 table on the screen.
Mark.