[PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
I'm going to approach this question in a different way, in case some people were put off by the complexity of it yesterday. For all those who don't know my question from yesterday, I have a form where I can upload up to 9 files at a time. Unfortunately, only the first 5 of those files are

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Juhan Kundla
Ühel ilusal päeval [16-10-2002 16:48] kirjutas Jason Young: I'm going to approach this question in a different way, in case some people were put off by the complexity of it yesterday. For all those who don't know my question from yesterday, I have a form where I can upload up to 9 files

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Timothy Hitchens
IE can only have two concurrent connections open... eg if you have a http 1.1 connection open for say a ongoing cgi/php call (ping or traceroute) then you make another call for the same script and then a further call to the server the last call will just sit there spinning it's wheeels until

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Brent Baisley
I hadn't thought about that, but it does sound like a possibility. Although a browser isn't limited to 5 connections at a time. It is usually set by the user and in my experience defaults to 4 and can be set as high as 8. Most users (or even programmers) don't know about this simple setting.

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Tom Rogers
Hi, Wednesday, October 16, 2002, 11:49:04 PM, you wrote: JY I'm going to approach this question in a different way, in case some JY people were put off by the complexity of it yesterday. JY For all those who don't know my question from yesterday, I have a form JY where I can upload up to 9

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
BEAUTIFUL! This was the problem... it wasn't that there was a limit of 5 maximum uploads, it was just that my 'while' statement was only counting as many fields as the first sub-array for $_FILES.. which is 5. Tom, thanks a bunch! -Jason Tom Rogers wrote: Hi, Wednesday, October 16,

RE: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread David Freeman
For all those who don't know my question from yesterday, I have a form where I can upload up to 9 files at a time. Unfortunately, only the first 5 of those files are being uploaded at any given time. I haven't specifically checked your program logic but I believe that this is where

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
Yeah, this has been worked out already - turns out I was looping on the file elements themselves (size, name, tmp_name, etc) isntead of the actual number of files. Thanks for your reply tho! :) -J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: