Guest User

Untitled

a guest
Mar 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $dir = "/ruta/a/tus/ficheros/";
  3. if (is_dir($dir)) {
  4. if ($dh = opendir($dir)) {
  5. while (($file = readdir($dh)) !== false) {
  6. echo $dir . $file . "<br>";
  7. }
  8. closedir($dh);
  9. }
  10. }
  11. ?>
Add Comment
Please, Sign In to add comment