Archived
1
0
Fork 0
This repository has been archived on 2018-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
sjqg/menu/menu.php

21 lines
415 B
PHP

<!--
$verzeichnis = realpath($_SERVER['DOCUMENT_ROOT'] . "/bild_framework/");
echo "<ol>";
if ( is_dir ($verzeichnis ))
{
if ( $handle = opendir ($verzeichnis))
{ while (($file = readdir($handle)) !== false)
{
echo "<li>Dateiname:";
echo $file;
echo "<ul><li>Dateityp: ";
echo filetype ( $file );
echo "</li></ul>\n";
}
closedor($handle);
}
}
echo "</ol>";
-->