I have a list of files using a regular select list in html. Users click on more than one filename and then click next. The next page is supposed to display the names of the files they selected. It only seems to display the last one selected. Anyone know how I can get all of the files selected? Is there a way to pass it as an array?
<select name="filenames[]" size="5" multiple> <option>hello.html</option> <option>bye.html</option> <option>other.html</option> </select>
by putting [] after the field name http passes it as an array.