Ajax获取POST请求

时间:2014-02-02 06:41:34

标签: javascript php jquery ajax

我在从ajax获取值时遇到问题。

此文件中我的ajax代码为http://websiteeonline.com/form-editable.js

我的表格与萤火虫看起来像这样。 http://websiteeonline.com/Screen%20Shot%202014-02-02%20at%2012.04.45%20pm.png

enter image description here

我使用这种PHP代码。

<?php include('admin-header.php'); 

    if(isset($_GET['useredit']))
    {

        $uid=$_GET['useredit'];
        $EditUserDetails=$user_details->find_by_id($uid);



        if(isset($_REQUEST['mobile']) || isset($_POST['mobile']))
        {
            echo "some value";
             $mobile=$_GET['value'];
        }

    }

?>

我不知道问题在哪里我无法进入“IF”循环,我想获得“移动”更新值,以便我可以更新到mysql DB。请帮我。我没有遇到问题。

谢谢! (提前)

1 个答案:

答案 0 :(得分:2)

从你的照片中,POST变量是name =“mobile”。所以你的$_REQUEST['mobile']是错的。检查isset($_POST['name'])然后$_POST['name'] == 'mobile'