Jump to content

[SOLVED] Populate a listbox with files in a directory


Recommended Posts

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? 

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!

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.