Hi,
To make a multiple file upload do the following
make your file field like this
<input type="file" name="thefile[]" />
Not the [] after file name it is to make array of file fields
now just add the above line as many time as you want say for 2 file at one time write it twice.
Than in you PHP script
Just iterate through the $_FILES using while loop
while (list($index,$value)=each($_FILES))
{
do your upload for this file
}
Hope that help
Just you need to make array of object and iterate through it