duanqiao2225 2017-09-04 12:55
浏览 41
已采纳

如果发送的数据包含多于表单,如何在php中检索表单字段

I have a simple form in which the user can enter a search term:

<form class="form-inline justify-content-center" id="searchForm">
      <div class="form-group">
            <label class="sr-only text-info" for="searchTerm">Search term</label>
            <input type="text" class="form-control mb-2 mr-sm-2 mb-sm-0" name="searchTerm" id="searchTerm" placeholder="Search">
       </div>
       <button type="submit" class="btn btn-info">Search</button>
</form>

And I send the form using ajax like this:

$form = $(e.target);
    $.ajax({
        url: "searchmovielist.php",
        type: "GET",
        data: {form: $form.serialize(), username: getCookie('username')},
        success: function (response) {
            console.log(response);
        }
    });

My question is how do I retrieve the fields from the form in php if I get the form using $_GET['form']?

  • 写回答

1条回答 默认 最新

  • dplbf4340 2017-09-04 14:16
    关注

    You can use PHP function parse_str to split the string to array. So the code would be like

    $username = $_GET['username']
    parse_str($_GET['form'], $form_data);
    var_dump($form_data);
    

    But I'm wondering why are you reading username from a cookie and then sending it again in the request? Why not just read it from $_COOKIE in PHP?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大