My php version is 5.4.16
I have a form with 2500 fields. That sounds weird, but actually I have an excel sheet. I read the sheet and display all data in an HTML table whose each cell has a hidden field so that I would be able to post all the data and do further.
Issue: $_POST remains empty when I post the form with 2500 fields. When is delete some the fields or remove some columns from excel sheet which results in less number of fields in the $_POST,then it works fine.
Question: Is there any limit in $_POST for the number of fields being posted?