Guest User

Untitled

a guest
Dec 16th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $files_dir = "./tests";
  3. $files_list = scandir($files_dir);
  4. echo '<ol>';
  5. foreach ($files_list as $value)
  6. {
  7. if ($value !='.' and $value !='..' )
  8. {echo '<li><a href="./tests'. $value.'">'.$value.'</a></li><br>';}
  9. else{}
  10. }
  11. echo '</ol>';
  12. ?>
Add Comment
Please, Sign In to add comment