jonassvensson4

Untitled

Sep 14th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. ## BILD-SLIDER ##
  2. <?php
  3. $directory = "uploads/";
  4. $images = glob($directory . "*.*");
  5.  
  6. foreach($images as $image)
  7. {                                              
  8.     echo "<li><a href='#'><img src='$image'/></a></li>;";
  9. }                                          
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment