gudfellas

Untitled

Aug 1st, 2012
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Blablabla</title>
  4. </head>
  5. <body>
  6. <?php
  7. $directory = "../images/";
  8.  
  9. //get all image files with a .jpg extension.
  10. $images = glob($directory . "*.jpg");
  11.  
  12. //print each file name
  13. foreach($images as $image)
  14. {
  15. echo $image;
  16. }
  17. ?>
  18. <img src="<?php echo $image; ?>">
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment