Aren't you in the wrong forum?
Uploading multiple files
It is possible to upload multiple files simultaneously and have the information organized automatically in arrays for you. To do so, you need to use the same array submission syntax in the HTML form as you do with multiple selects and checkboxes:
Note: Support for multiple file uploads was added in version 3.0.10.
Example 19-3. Uploading multiple files
<form action="file-upload.html" method="post" enctype="multipart/form-data">
Send these files:<br>
<input name="userfile[]" type="file"><br>
<input name="userfile[]" type="file"><br>
<input type="submit" value="Send files">
</form>
ETC.
Michael
Galois wrote:
Does anyone know of a Java Applet that can handle multiple file uploads. I'm looking for something more robust that a few input files in a form.
something like this is ideal, but it is asp only
http://www.appletfile.com/
thanks