Advertisement
sombriks

listing and fortune

Oct 25th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.     if ($handle = opendir('.')) {
  3.         while (false !== ($file = readdir($handle))) {
  4.             echo "<a href='$file'>$file</a><br/>";
  5.         }
  6.         closedir($handle);
  7.     }
  8.     $out=array();
  9.     exec("fortune",$out);
  10.     foreach($out as $l)
  11.         echo "$l<br/>";
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement