DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
PHP Script For Listing Files In A Given Directory
http://uk2.php.net/scandir returns a list of all files in a directory into an array. You can then use a foreach statement to print each one out:
<?
$dir = "images/"; //You could add a $_GET to change the directory
$files = scandir($dir);
foreach($files as $key => $value){
echo $value; //You could add an icon in here maybe, a link to the file/directory, or a link to list files in that directory
}
?>





