views:

278

answers:

4

i know that php doesn't allow you to select multiple files to upload in one box.

is there a work around or do you have to learn another language for it?

A: 

There is no html/javascript workaround. You would have to look to flash or java to be able to do this.

Peter Smit
jquery uploadify:)
weng
check again. It is using flash.....
Peter Smit
+1  A: 

Use the file input form element more than once, give it a different name and you have multiple upload fields on one page. No need to learn anything else.

Sam152
+2  A: 
  1. PHP is the back-end, PHP is not the thing which restricts you to use only "one" upload a time
  2. HTML/JavaScript are the front/mid-end which cause the restrictions. (So add HTML to your questions tags)
  3. If you use Flash (AS = ActionScript) you can still have PHP as back-end, as processor which handles the uploaded files.
daemonfire300
A: 

As others have said, you have to use Flash to get multiple uploads. An alternative to uploadify is SWFUpload.

Pickle