<html>
Hier nichts
<style type="text/css">
Hier nichts
</style>
<body >
<?php
$buchstabe_alt = "";
$verzeichnis = openDir("./");
while ($file = readDir($verzeichnis)) {
if ($file != "." && $file != "..") {
$buchstabe = strtoUpper(mb_substr($file, 0, 1));
if (!strstr($buchstabe_alt, $buchstabe)) {
$buchstabe_alt .= $buchstabe;
// Anfangsbuchstaben anzeigen
echo '<strong>' . $buchstabe . '</strong> <br>';
}
echo '<a href="./' . $file . '">' . $file . '</a><br>';
}
}
closeDir($verzeichnis);
?>
</body>
</html>
|