PDA

View Full Version : listing of the files instead of opening indexfile


_harri_
02-26-2004, 07:20 AM
hi!

again i have a question =)
is it possible to configure lsws in a way, that the files are listed up in the webbrowser ?


*thx*
_harri_

harrinp1
02-26-2004, 10:15 AM
hi!

again i have a question =)
is it possible to configure lsws in a way, that the files are listed up in the webbrowser ?


*thx*
_harri_

You can use a simple script like this saved as index.php to do the job:-

<?
$dir_handle=opendir(".");
while ( $current_file=readdir($dir_handle) ) {
if (ereg("^\.",$current_file)) continue; # skip dot files
print "
<A HREF=$current_file>$current_file</A>";
if ( is_file($current_file) )
$files[]=$current_file;
if ( is_dir($current_file) )
$dirs[]=$current_file;
}
closedir($dir_handle);
?>

Cheers

Paul