Guest User

Untitled

a guest
Nov 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. $directory="/img";
  3. $dirint = dir($directory);
  4. while (($archivo = $dirint->read()) !== false)
  5. {
  6. if (eregi("gif", $archivo) || eregi("jpg", $archivo) || eregi("png", $archivo)){
  7. echo '<img src="'.$directory."/".$archivo.'">'."n";
  8. }
  9. }
  10. $dirint->close();
  11. ?>
Add Comment
Please, Sign In to add comment