I'm trying to submit a form using AJAX, but keep getting
Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini
Up to now I've been using serializeArray() and then sending that to my php page. In my PHP page I've been using the following to read the submitted data:
$var = $_REQUEST['var_name'];
This works fine when there are only a few values submitted, but fails as above on a large page. Some of my form fields are named as $value[]
so I can have multiple entries returned for them.
I'm now trying to get the following to work:
var tmp = $('#form').serialize();
$.ajax({
type: "POST",
async: true,
cache: false,
data: {myData : tmp},
url: "helper.php?action=submit®ion=" + REGION,
})
When this submits I get my individual values for action and region and then one very long string of myData
How do I process myData
so I can use each individual value and submission from it ? ideally in a similar why to my previous method of $var = $_REQUEST for each entry.
Thanks