if ($handle = opendir('.')) {
echo "Bildersammlung Schwarzwald anno 2013
";
echo "";
while (false !== ($datei = readdir($handle))) {
// echo "$datei\n";
if ((!($datei == ".")) and (!($datei == "..")) and (!($datei == "index.php")))
{
echo "- $datei
" ;
}
else continue;
}
closedir($handle);
}
echo "
";
?>