Citation :
<?php
$tableau = array();
$dossier = opendir ('./galconf/mini/'); while ($fichier = readdir ($dossier)) {
if ($fichier != '.' && $fichier != '..' && $fichier != 'index.php'&& $fichier != 'Thumbs.db'&& $fichier != '') {
// miniature dans un tableau
$tableau[] = $fichier;
}
} closedir ($dossier); //nbr colonnes
$nbcols=6;
//compte nbr photos
$nbpics = count($tableau);
if ($nbpics != 0) {
echo '<div id="galerie1">';
echo '<table id="galerie1_mini" border="0" cellspacing="0" cellpadding="0" ><tr>'; for ($i=0; $i<$nbpics; $i++){ if($i%$nbcol==0)echo '<td>';
echo '<a href="galconf/pics/' , $tableau[$i] , '"><img src="galconf/mini/' ,$tableau[$i] , '" alt="Image1" /></a>';
if($i%$nbcol==($nbcol-1) or $i==($nbpics-1)) echo '</td>';
}
echo '</tr></table>';
echo '</div>';
echo "<dl id=\"photo1\">";
echo "<dt> </dt>";
echo "<dd><img src=\"gal/pics/".$tableau[0]."\" alt=\"Image 1\" id=\"big_pict\"/></dd>";
echo "</dl>";
}
else echo 'Aucune image
afficher';
?>
|