When I try to load the page, it doesn't load and gives me a blank screen.
but when I use a simple script like this :
<?php
$handle=opendir('.');
while (false!=($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file";
}
}
closedir($handle);
?>
it would work and display the files.
But I want it to display in descending order and only limit to 20 files.
thanx