Forum Moderators: coopster
<?
$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
}
?>
Thanks
Welshandy