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?

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

报告相同问题?