[PHP] Multiple file upload

2009-11-11 Thread Matthew Croud
Dear lords of PHP, I have a working image upload script that meets all my needs, My question is I need to upload multiple images using the same form, This is the PHP part I have so far, largely taken from a book: _ $file_dir =

Re: [PHP] Multiple file upload

2009-11-11 Thread Martin Scotta
On Wed, Nov 11, 2009 at 12:09 PM, Matthew Croud m...@obviousdigital.comwrote: Dear lords of PHP, I have a working image upload script that meets all my needs, My question is I need to upload multiple images using the same form, This is the PHP part I have so far, largely taken from a book:

Re: [PHP] multiple file upload, yet again

2003-02-10 Thread David T-G
Jason -- ...and then Jason Wong said... % % On Monday 10 February 2003 08:36, David T-G wrote: % % Hmmm... I haven't yet been able to download it, but I was pointed to a % live page (tech.indymedia.org/publish.php3) only to find that it has % multiple boxes for multiple files, which I can

Re: [PHP] multiple file upload, yet again

2003-02-09 Thread Gurhan Ozen
Hi David, I know that there is an php application doing multiple file uploading at once which is open source.. The application is san franscisco indymedia's news publishing system. You might wanna download it at: http://tech.sfimc.net/download.php and scrutinize the source code.. I am very sure

Re: [PHP] multiple file upload, yet again

2003-02-09 Thread David T-G
Gurhan, et al -- ...and then Gurhan Ozen said... % % Hi David, Hi! % I know that there is an php application doing multiple file uploading at % once which is open source.. Cool! % The application is san franscisco indymedia's news publishing system. % You might wanna download it at:

Re: [PHP] multiple file upload, yet again

2003-02-09 Thread Jason Wong
On Monday 10 February 2003 08:36, David T-G wrote: Hmmm... I haven't yet been able to download it, but I was pointed to a live page (tech.indymedia.org/publish.php3) only to find that it has multiple boxes for multiple files, which I can already do. Nothing that allows multiple files with

[PHP] multiple file upload, yet again

2003-02-08 Thread David T-G
Hi, all -- I realize that this has probably been beaten to death, and I've watched with some excitement the recent crop of discussions of multiple file uploads, but only to be disappointed. I've read in detail the archives and seen countless statements that one cannot upload multiple files in

[PHP] multiple file upload

2002-11-14 Thread Funk-XL
Is it possible to upload multiple files at once without selecting each file with seperate form fields? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] multiple file upload

2002-11-14 Thread Funk-XL
Hi All, Is it posible to do multiple file upload without selecting each file manual in multiple form fields? Rob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] multiple file upload

2002-11-14 Thread John W. Holmes
Is it posible to do multiple file upload without selecting each file manual in multiple form fields? No. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] multiple file upload

2002-11-14 Thread Justin French
Hi, on 14/11/02 8:12 PM, Funk-XL ([EMAIL PROTECTED]) wrote: Is it posible to do multiple file upload without selecting each file manual in multiple form fields? Nope. Only way I can think of would be if the files were pre-zipped/stuffed/gzipped/etc, AND if you were able to decompress on the

Re: [PHP] multiple file upload

2002-11-14 Thread Jason Wong
On Thursday 14 November 2002 18:12, Funk-XL wrote: Hi All, Is it posible to do multiple file upload without selecting each file manual in multiple form fields? Nope. -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software Systems Integrators * Web Design Hosting *

Re: [PHP] multiple file upload

2002-11-14 Thread Marek Kilimajer
Don't get mistaken. Sure it is possible: input type=file name=file[] input type=file name=file[] input type=file name=file[] this will give you $_FILES['file']['name'][0],$_FILES['file']['name'][1],$_FILES['file']['name'][2], the same for [type],[tmp_name] and [size] Funk-XL wrote: Hi All,

Re: [PHP] multiple file upload

2002-11-14 Thread Marek Kilimajer
Sorry, now I read your question thoroughly, no this is not possible Funk-XL wrote: Hi All, Is it posible to do multiple file upload without selecting each file manual in multiple form fields? Rob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] multiple file upload

2002-11-14 Thread Edward Peloke
through each picture uploading it...this is what you will probably have to do. Eddie -Original Message- From: Marek Kilimajer [mailto:kilimajer;webglobe.sk] Sent: Thursday, November 14, 2002 8:32 AM To: PHP Subject: Re: [PHP] multiple file upload Sorry, now I read your question thoroughly

[PHP] Multiple File Upload

2001-08-03 Thread Arne
Hi, I want to upload multiple files in one step. I know how to handle the things on PHP side, but how can I select more than one file in the select box. It does not work with: FORM ENCTYPE=multipart/form-data ACTION=_URL_ METHOD=POST INPUT NAME=userfile TYPE=file/FORM I can only select one

[PHP] multiple file upload..

2001-02-26 Thread John LYC
i have a situation. i hope im clear abt this. i need to post multiple set of data elements into php. each set consists of data elements of text, textarea, radio buttons, checkboxes and even a file(image). most fields are optional. all sets are not subset of each other but belongs to the same

Re: [PHP] multiple file upload..

2001-02-26 Thread Yasuo Ohgaki
snip questions: 1. if file is not declared, what does the file elements holds?... i sometimes get null value, sometimes get "none" I get following output with PHP4.0.4pl1 w/ Linux (I set php.ini to store uploaded files info to $HTTP_UPLOAD_FILES. You will get different output if you don't)