multiple binary file upload for Web applications

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

multiple binary file upload for Web applications

Post by pelegk2 »

is it possible to do upload morethen 1 file at the same time?
like in this article :
http://www.15seconds.com/issue/010522.htm
thnaks i nadvance
peleg
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

ever try it? :roll:
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

yess

Post by pelegk2 »

it works great with ASP
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

...in php.
User avatar
n00b Saibot
DevNet Resident
Posts: 1452
Joined: Fri Dec 24, 2004 2:59 am
Location: Lucknow, UP, India
Contact:

Post by n00b Saibot »

pelegk2 wrote:it works great with ASP
and the problem is that you are stuck with PHP :lol:
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

it works with ASP

Post by pelegk2 »

how can i do it with php?
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

do you understand how to work with 1 uploaded file? if yes, then you know how to work with multiple uploaded files.
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

yes i know i can do

Post by pelegk2 »

multiple lines of :

Code: Select all

<input name="userfile" type="file">
but not the point!
if i have 100 files with total size of 100K i will have to go over each file and choose it
i wantto do it in one step!
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

I don't know of any, nor have I ever heard of any way to upload multiple files through a single file upload tag. The only way I know of it being possible is through ActiveX or Java, both of which is fairly restrictive in support.

Your original post didn't sound like you wanted multiselection.
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

sorry if i didnt described correctly from the begining:)

Post by pelegk2 »

i just thought maybe PHP has something to front with the asp uploader example i gave in the link
Post Reply