Hallo,
Ich habe folgenden Code, der Dateien aus einem Ordner liest.
Nun wüsste ich jetzt gerne, wie ich die auflistung Alphabetisch ausgebe!?
Vielen Dank für Eure Hilfe!
Gruss adihas
Ich habe folgenden Code, der Dateien aus einem Ordner liest.
Nun wüsste ich jetzt gerne, wie ich die auflistung Alphabetisch ausgebe!?
PHP-Code:
<?
$handle = opendir ('php/');
while ($file = readdir ($handle)) {
if ($file != "." && $file != "..") {
if ($zahl == "2")
{
$zahl = "1";
}
$datei="php/$file";
$anzahl_zeilen = count(file($datei));
$file = substr("$file", 0, -4);
$file2 = strtolower($file);
$file = ucwords ($file);
if($anzahl_zeilen >= "1")
{
$anzahl_zeilen = "<font color=\"red\">($anzahl_zeilen)</font>";
}
if($anzahl_zeilen == "0")
{
$anzahl_zeilen = "($anzahl_zeilen)";
}
if ($zahl == "")
{
echo "<tr>
<td width=\"270\">
<p align=\"left\"><a href=\"show.php?ordner=php&kategorie=$file2&show=yes\"><img border=\"0\" src=\"grafik/ordner_close.gif\"> $file</a>$anzahl_zeilen<br></td>";
$zahl = "2";
}
if ($zahl =="1")
{
echo " <td width=\"269\">
<p align=\"left\"><a href=\"show.php?ordner=php&kategorie=$file2&show=yes\"><img border=\"0\" src=\"grafik/ordner_close.gif\"> $file</a>$anzahl_zeilen</td>
</tr>";
$zahl = "";
}
}
}
closedir($handle);
?>
Gruss adihas
Kommentar