<?phpecho "<select name="file"> ";foreach (new DirectoryIterator("c:wampwww") as $file) {echo "<option>" . htmlentities($file) . "</option> ";}echo "</select>";?>