Aluf

Get Dir_glob function-Aluf

Jan 23rd, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <form method="POST">
  2. <input type="text" name="path" value="C:\AppServ\www\\sec4ever\">
  3. <input type="text" name="type" value="*.php">
  4. <input type="submit" value="Get File Type"><br>
  5. <?
  6.  
  7. $dir = $_POST['path'];
  8. $typ = $_POST['type'];
  9. $phps = glob($dir . $typ);
  10.  
  11. foreach ($phps as $php) {
  12. echo $php;
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment