initialer import von douth-hiphop.de's Entwicklungsstand
This commit is contained in:
commit
9805cf14de
54 changed files with 1237 additions and 0 deletions
21
menu/menu.php
Normal file
21
menu/menu.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!--
|
||||
$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>";
|
||||
-->
|
Reference in a new issue