PHP-Code:
<?php
$verz="Ordner";
$handle=opendir($verz);
while ($file = readdir ($handle))
{
if ($file != "." && $file != "..") {
$zeit=filectime($verz."/".$file);
$datum=date("Y-m-d",$zeit);
$array[$file] =$datum;
}
}
closedir($handle);
arsort($array);
foreach($array as $file)
{
while(list($key,$val) = each ($array))
{
echo "<table border='0' bordercolor='#333333' bgcolor='#333333'
Cellspacing='0' width='800'>";
echo "<tr><td bgcolor='#333333' width='600'>$key </td>";
echo "<td bgcolor='#333333' width='200'>$val</td></tr>";
}
}
?>
Vielleicht hat ja einer eine Lösung, wäre nett von euch.
Kommentar