I'm trying to send a rather large html form and the receiving php script is not receiving all of the data.
I had thought that there was no limit to the amount of POST data that you can send ... so i'm pondering if there is perhaps a php setting or a setting on the server which is limiting it.
I've checked the page which contains the form, which is generated from the database and it has named the fields correctly.
However when i submit the form, the receiving php script is not receiving all the POST data.
The form fields are a sequence of:
hidden field which is an integer
hidden field which is a string around 10 characters
text field upto 128 characters
text field upto 128 characters
this is then repeated around 500 times
the fields are named thus
1_hiddenA
1_hiddenB
1_textC
1_textD
2_hiddenA
2_hiddenB
2_textC
2_textD
3_hiddenA
3_hiddenB
3_textC
3_textD
and so on down to around 500_textD
my php script is reading the data fine upto 251_hiddenA and from then on they are 'undefined' eg. i assume they haven't been passed.
any ideas on what is causing the limit ... thanks very much if you can help.