PHP USERS:
If you are using php to process your form, note that php has the max_input_vars parameter in the php ini file. I believe the default value is 1000.
I came across this when creating a cakephp application. To find out if this affects your post, count how many rows of data you insert into the form, and then count how many rows are actually sent back.
This way your form will be limited by the number of input vars that you have.
This is actually not a direct answer to the OP, but I think that it would be useful for anyone looking for a restriction on input fields.
styks source share