<?php $col = 4; // Chiche 4 colonnes $dossier = 'images/groupe/toussa'; $nb = 0: $rep = opendir("$dossier"); while (false !== ($file = readdir($rep))) { if($file!='.' && $file!='..') { if(!is_dir($file)) { if($nb >= $col) { $nb = 0; echo '<br />'; } else $nb ++; echo '<img src="',$dossier,$file,'/" >"; } } } ?>
Web analytics