php - How to change max_input_vars? -
my php version 5.4.16
i have form 2500 fields. sounds weird, have excel sheet. read sheet , display data in html table each cell has hidden field able post data , further.
i found how increase maximum post variable in php? need change max_input_vars not find it.
issue: need change max_input_vars? unable find in php.ini
please help!!!
if unable find it, add ;) if it's not there in configuration file (which strange) assume default value of 1000.
max_input_vars = 3000
this value not possible set @ runtime using ini_set because in documentation it's specified php_ini_perdir makes sense because request variables have processed php engine before script starts.
you can set in .htaccess if want make more specific project without affecting other projects in same server.
Comments
Post a Comment