Advertisement
Eeems

Untitled

Jul 11th, 2011
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <style>
  2.     img.image{
  3.         max-width:200px;
  4.         max-height:200px;
  5.         padding:10px;
  6.     }
  7. </style>
  8. <?php
  9.     $dir = scandir("images/");
  10.     $i = 0;
  11.     foreach($dir as $key => $file){
  12.         echo "<a href='images/{$file}'><img src='images/{$file}' class="image" /></a>";
  13.         $i++;
  14.         if($i%3==0){
  15.             echo "<br />";
  16.         }
  17.     }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement