I'm trying to post a large form through php using POST method. My form post script has been working fine until now that the $_POST
array got pretty large.
When i print out file_get_contents('php://input');
,all the inputs that are included in the form, are shown. But when i print out $_POST
, it only gets the first part of the form. I've tried to remove rows and then the $_POST
method works fine again. As soon as it gets too large, it won't post all data included in the form.
Anyone got any ideas? I've tried to edit php.ini
and set post_max_size
to a higher value, but it didn't help either.