0

我有一个最奇怪的问题。我使用 Ajax 请求将数据发送到 php 页面,该页面将详细信息保存在 db 中以供进一步使用。

每个之后的评论echo是我得到的输出。

$name = $_POST['name'];
$surname = $_POST['surname'];
$message = $_POST['description'];
//$date = $_POST['date'];
$type = $_POST['request_type'];

echo file_get_contents("php://input"); // name=John&surname=Doe&description=Testing&request_type=note

date_default_timezone_set("Africa/Johannesburg");
$time = strtotime("now");

echo "NAME & SURNAME: " . $name . ' ' . $surname; // NAME & SURNAME: 

谁能告诉我为什么它在我echo file_get_contents("php://input");而不是其他任何地方输出正确的东西?

我不知所措。这没有任何意义……

编辑 1:响应 JBTRND。

为了确保我做出正确的调用,这里是 AJAX 请求:

$.ajax({
    type:'POST',
    url:"local_code/form_accepted.php",
    data:serialized,
    success:function(response){
        $('#request_type').attr('disabled');
        $('#dialog').html(response);
        $('#docSumbit').html(response);
    }
});

serialized$('#support').serialize();

4

1 回答 1

1

也许您通过 $_GET 传递它们?

于 2012-06-01T12:38:36.240 回答