Using exec() to Produce a Directory Listingexec( "ls -al .", $output, $return );print "Returned: $return";foreach ( $output as $file ) { print "$file";}?>
Returned: $return