directory script
directory script
Out of context: Reply #1
- Started
- Last post
- 3 Responses
- ave0
Here's your starting point:
$dir_path= "./";
$browse_me = opendir( $dir_path ) or die("bad news here!");while ($file=readdir($browse_me)){
echo $file."";
}