Advertisement
Guest User

Untitled

a guest
Mar 15th, 2019
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.     $dir = opendir("/home/fabian/Downloads");
  3.     $count = 0;
  4.    
  5.     while (($file = readdir($dir)) !== false)
  6.     {
  7.     $filelength = strlen($file);
  8.         for ($filelength<=150;$filelength>$count;$count++){
  9.             echo "<option value='$count'>$file</option>";
  10.         }
  11.     }
  12.  
  13.     closedir($dir);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement