max_input_vars integer How many input variables may be accepted (limit is applied to $_GET, $_POST and $_COOKIE superglobal separately). Use of this directive mitigates the possibility of denial of service attacks which use hash collisions. If there are more input variables than specified by this directive, an E_WARNING is issued, and further input variables are truncated from the request.
http://php.net/manual/en/info.configuration.php#ini.max-input-vars
Basically, "MAX_INPUT_VARS" limits the number of input values ββthat can be sent at a time.
For some reason, his statement contains more than 1000 variables sent when sending data to your server.
To get around this, increase the limit in your php configuration or ... change when you save the data. For example, each time they answer so many questions or when they complete an answer to a page, submit a form.
Bioto source share