diff --git a/htdocs/index.php3 b/htdocs/index.php3 index 0f30c18d2e2..fdf16710e5c 100644 --- a/htdocs/index.php3 +++ b/htdocs/index.php3 @@ -30,7 +30,6 @@ print "

"; /* * Boites * - * TODO mettre les boites dans une table */ $db = new Db(); @@ -49,13 +48,29 @@ if ($result) $j++; } } + +print ''; for ($ii=0, $ni=sizeof($boxes); $ii<$ni; $ii++) { + if ($ii / 3 == 0) + { + print "\n"; + } + + print '"; + + if ( ($ii -1) / 3 == 0) + { + print "\n"; + } + } +print "
'; include($boxes[$ii]); - print "
"; + print "
"; + $db->close();