how do you upload multiple files using only a single input type ='file' and a singe button to upload the file? I've been looking around for this, the closest solution was to have multiple input type 'file' for each file to be uploaded......
thanx, crue
As far as I know, you don't. Each file "handle" is specified by that INPUT field's name, so having multiple files in one input field would not work.
Hope this helps, Tom
muliple file uploads
hth
Thank's guys, I decided to upload it one file at a time
crue
Use $_FILES['filename']['tmpname'] to move the temporary file created by php. For multiple file just give input fields of type file new names.