ssailer Posted November 12, 2009 Share Posted November 12, 2009 I need to be able to list all of the files in a directory and then put all of those files in a listbox for a user to select from. I've been able to get the file list, but I can't figure out how to populate a list box with files from that list. Help, please? Quote Link to comment https://forums.phpfreaks.com/topic/181291-solved-populate-a-listbox-with-files-in-a-directory/ Share on other sites More sharing options...
Schlo_50 Posted November 12, 2009 Share Posted November 12, 2009 Could you post the code you have already please? We can't really help you without seeing what you've tried so far. Quote Link to comment https://forums.phpfreaks.com/topic/181291-solved-populate-a-listbox-with-files-in-a-directory/#findComment-956406 Share on other sites More sharing options...
ssailer Posted November 12, 2009 Author Share Posted November 12, 2009 This outputs the directory: <?php $dirname = "Fireworks"; $dir = opendir($dirname); while(false != ($file = readdir($dir))) { if(($file != ".") and ($file != "..")) { echo("$file <br />"); } } ?> I really haven't gotten any farther than that. I have the select box created, but it's not working at all. <select name="dlfile" id="dlfile"> <option value="<?php echo $file ?>"><?php echo $file ?></option> </select> I am extremely new to PHP (I'm a ColdFusion developer, who has done this before with CF), and I do not know how to loop through a recordset. I know I need to use <?php do { ?> but I have no idea where to put it or how to loop through the $file. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/181291-solved-populate-a-listbox-with-files-in-a-directory/#findComment-956432 Share on other sites More sharing options...
ssailer Posted November 12, 2009 Author Share Posted November 12, 2009 I found a solution that is working. Involved a little bit of messing around, and it's not as clean as I'd like it to be, but it works. Quote Link to comment https://forums.phpfreaks.com/topic/181291-solved-populate-a-listbox-with-files-in-a-directory/#findComment-956503 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.