Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. require_once '../app/init.php';
  3. $app = new App;
  4. $dir = "./img/";
  5. $images = glob($dir . "*.jpg");
  6.  
  7. foreach ($images as $image){
  8. echo '<img src = "' . $image . '" /><br />';
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement