Hi!
Please, how do I get my pictures on a web page selected from the source directory sorted by date? I know this piece of code
<?php
$handle=opendir('.');
echo "Directory handle: $handle\n";
echo "Files:\n";
while (($file = readdir($handle))!==false) {
echo "$file\n";
}
closedir($handle);
?>
but it gives me the files in random(?) order.
Please help. If know how to sort files alphabeticaly add it to your email as well ;-)