Advertisement
stinglash5

Much better File List

May 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.    
  3.     $dir = ".";
  4.     $files = scandir($dir);
  5.  
  6.     unset($dir[0]);
  7.     unset($dir[1]);
  8.  
  9.     echo "<a href='../'>Going Up</a><br><br>";
  10.  
  11.     foreach ($files as $file)
  12.     {
  13.         echo "<a href='".$file."'>".$file."</a><br>";
  14.     }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement