|
|
|
$dir = opendir('/home/www/web315/html/images/Galerie/2010/FahrTrainingsKurs10/gr');
//$dir = opendir('D:\MMVE\HP\Homepage MMVE\images\Galerie\2010\FahrTrainingsKurs10\gr');
$Count = 1;
while($file = readdir($dir)){
//if(is_file($file)){
if(strlen($file) > 3) {
//echo is_integer($Count/3) . "--" . $Count;
echo " | ";
if(is_integer($Count/2)) {
echo "";
}
//echo "".$file." ";
//}
$Count = $Count + 1;
}
}
closedir($dir);
?>
|
|