Functions Php



Using exec() to Produce a Directory Listing



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

Returned: $return

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