Advertisement
guitarman0831

Untitled

Jun 8th, 2011
158
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. $dir = '../uploads/store/';
  3.  
  4. if (is_dir($dir)) {
  5.     if ($dh = opendir($dir)) {
  6.         while (($file = readdir($dh)) !== false) {
  7.             echo "$file<br \>";
  8.         }
  9.         closedir($dh);
  10.     }
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement