我有一个最奇怪的问题。我使用 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();