Image

Imagesaintwhocares wrote in Imagephp

Hello all
my first post here
and I've got a question
what is the best way to pass some what large arrays from a form?
I've got this form which fails to submit and it seems to be because of the array which is being created
the array, if passed properly, should look something like...
Array
(
[1] => Array
(
[type] => 1
[gender] => B
[active] => Y
)

and I'd guess there are about 100 or so total...

[100] => Array
(
[type] => 14
[gender] => B
[active] => Y
)

)

but the problem is, when I send it, I get a popup which states...
"The Attempt To Load 'Accessing URL HTTP:XXXX.php?..."

now, when I cut the form and take out one of the values, for example [active], it goes through fine, thus implying to me that it's a size issue and it can't pass type, gender, and active
any one have any theory here on how to fix this without splitting the form into several forms?
thanks