|
echo '';
echo '';
//
echo '| Gallerie #1 | ';
echo ' ';
echo '';
echo '';
//
// WELCHE GALLERIE..
$ordner = "./bilder/G01";
$handle = opendir($ordner);
while ($file = readdir ($handle)) {
if($file != "." && $file != "..") {
if(is_dir($ordner."/".$file)) {
echo "".$file." ";
}
}
}
//
echo ' | ';
echo ' ';
?>
|
|