php - 1000 checked elements maximum in a post? -
this question has answer here:
- posting form few thousand values 1 answer
i'm having trouble understand html forms :
i tried send 50 000 checked checkboxes through form (post method), var_dump($_post) tells me there 1000 element in array.
in local, value correct 50 000 elements.
is there parameter somewhere in apache or php limit number of checked elements posted ?
note : 1) tried change post_max_size 16m, , limit not reached.
2) name of inputs doesn't matter (same result t1, t2, t3... , test_with_a_long_name1, test_with_a_long_name2 ... etc) limit 1000.
thank in advance !
frederic
there setting in php.ini called max_input_vars
more here:
http://anothersysadmin.wordpress.com/2012/02/16/php-5-3-max_input_vars-and-big-forms/
Comments
Post a Comment