Development Php



Using exec() to produce a directory listing


exec( "ls -al .", $output, $return );
print "

Returned: $return

";
foreach ( $output as $file )
   print "$file
";
?>