RE: [PHP-WIN] this one's got me stumped...

2002-10-23 Thread Mikey
If you are trying to upload multiple files, why don't you get the user to send them via e-mail and have a scheduled script ('at' command) process the mailbox that receives the files? Sorry for not showing any examples, I haven't really got the time... regards, Mikey <-- Insert stream of consciou

Re: [PHP-WIN] this one's got me stumped...

2002-10-23 Thread db
thanks to all who replied! using sizeof($_FILES['username']['name']) yields an array of over 10 elements regardless of the number of files selected for upload. and i tried using something like "whilelist($key,$var)=each($_FILES['username']['name'][$i])...", but i couldn't get that to work eit

Re: [PHP-WIN] this one's got me stumped...

2002-10-22 Thread Dash McElroy
In that case, I think you might want to figure out a way to have the user zip the files and then unzip them server side. That sounds like the least tedious way without requiring a mass file upload (i.e. other than http access to the web host like ftp or direct). I think you're running into an HTT

Re: [PHP-WIN] this one's got me stumped...

2002-10-22 Thread db
thanks, Dash. I'm sure that would work, but i'm try to set up a page that allow a user to upload pictures for use in a photo gallery that i've scripted (i know i'm reinventing the wheel here). a user might have 50 or a 100 pics, and to upload one by one may be a bit tedious. does someone have an a