Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.         $imagesDir=opendir('upload/');
  3.        
  4.        
  5.             while (false !== ($file = readdir($imagesDir))) {
  6.                 echo '<img src=' . $imagesDir . $file . '/>' ;  
  7.             }
  8.        
  9.        
  10.        
  11.        
  12.        
  13.         closedir($imagesDir);
  14.        
  15.        
  16.        
  17.        
  18.         ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement