1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
<?
//Head Html
print "
<html>
<head>
<meta content='text/html; charset=ISO-8859-1' http-equiv='content-type'>
<title>Gallerie</title>
</head>
<body>
<table style='text-align: left; width: 100%;' border='1' cellpadding='2' cellspacing='2'>
<tbody>
<tr> ";
//Initialisation
$compteur=0;
$drapeau=0;
$start=$s;
//Bouble qui crée le tableau
while ($compteur<3 and $drapeau<3) {
print "<td><a href='$start.jpg'><img style='border: 0px solid ; width: 116px;' alt=' ' src='$start.jpg'></a></td>";
$start=$start+1;
$compteur=$compteur+1;
if ($compteur==3) {
$drapeau=$drapeau+1;
echo "</tr> <tr>";
$compteur=0; }
}
print " </tbody>
</table>
<br>
</body>
</html> ";
?> |