I have a simple basic HTML form with about 1500 fields. 500 rows have text entries. When form is submitted, $_POST
contains only about 130 entries of those 500 rows. post_max_size
is high, so it's not that. You can see the barebone sample here:
http://www.dadilja.rs/test.php
If you check the source after submit, you will see that the $_POST
data contains entries only until letter F.
So I'm figuring it's some server setting, since there's only HTML on the page, and the behaviour is the same on two different servers - probably some generic setting. If you check the Web console, and inspect Request Body, you will see that the form submits all the data. Any ideas?