普通网友 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 :)

    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀