Pass data from jQuery to PHP for an ajax post

后端 未结 3 1999
闹比i
闹比i 2020-11-29 09:45

Hello I am a newbie working with jQuery and Ajax. I am trying submit data to the server using Jquery POST method. And the data that I am passing is a string. Now I am unable

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 10:17

    The data param is supposed to be an object that has keys and values.

    var data = {
        hiddenContact: document.getElementById('hiddenContact').value
    }
    $.post('/callcenter/admin/postContacts', data);
    

    Then in PHP you can retrieve it like this:

    $hiddenContact = $_POST["hiddenContact"];
    

    I'm not a big CakePHP user but I believe the CakePHP version is like this:

    $hiddenContact = $this->params["hiddenContact"];
    

提交回复
热议问题