listing of the files instead of opening indexfile

#1
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_
 
#2
_harri_ said:
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
 
Top