普通网友 2017-05-31 11:50
浏览 24

jQuery提交大表格

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&region=" + 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

  • 写回答

2条回答 默认 最新

  • 零零乙 2017-05-31 11:53
    关注

    First on your php file check all the data is coming or not by below code:

     print_r($_POST) or var_dump($_POST) 
    

    greetings :)

    评论

报告相同问题?