Heres the php.net example of displaying a file slist in a directory:
$d = dir("/etc");
echo "Handle: ".$d->handle."<br>\n";
echo "Path: ".$d->path."<br>\n";
while($entry=$d->read()) {
echo $entry."<br>\n";
}
$d->close();
Ok, so far so good but this will not display
".files" like .htpasswd or .mrsmurf and so on. How can i find out what ".files" are in a dir????
Thanks for any help.
Greetings
Swen