Multi upload help

thenewprogrammer

New Member
Messages
45
Reaction score
0
Points
0
Trying to create upload script and got how to make the file upload but when i click browse i can only select one file at time unless i put more input boxs. I wnat to be able to select multple files at once like in the link below but havnt a clue on how to do it. Any help would be good

http://ajaxuploader.com/Demo/select-multiple-files-upload.aspx

When you click upload your able to highlight many files at once. Thats the part i want to know how to do.
 

ah-blabla

New Member
Messages
375
Reaction score
7
Points
0
People tend to use a java applet based uploader for this, i.e. look at JUpload.
 
Last edited:

ah-blabla

New Member
Messages
375
Reaction score
7
Points
0
Is java applet java programming ? is it not possible using ajax?
Yes and no: you don't actually need to know any java to use it on your webpage, since you only need to include the jar file. You can set up the server side section with php to receive uploaded files if you don't have jsp.

Yes, It is possible with ajax

Check this link... http://webdeveloperplus.com/jquery/m...-using-jquery/

Hope this is helpfull.
That uses flash though which is more horrible than having a java applet.
 

thenewprogrammer

New Member
Messages
45
Reaction score
0
Points
0
Hey i have upload script that works fine now but i want to add another option to it. Currently it uploads all files uploaded to folder called uploads but i want to have folders create themselves for a user. Example like if user "FRANKY" uploads something i want it to upload to folder FRANKY or if user "JIMMYJONES383" uploads something i want it to upload to folder JIMMYJONES383. If this folder does not exist create it. If this is not good way to name files please add advice. But main thing im looking for is to create a folder for each users uploads but havnt clue how to do this.

script is long , so if you know how post it with substitute variables and how it works if you could.
 
Top