gpt4 book ai didi

php - 无法接收 php 文件中的 POST 数据

转载 作者:行者123 更新时间:2023-11-28 16:39:13 26 4
gpt4 key购买 nike

更新

这是警报的屏幕截图:

alt text

我正在使用以下 JQuery 函数成功将数据 POST 到 user_submit.php 文件,只是 php 文件无法接收数据。

    $(function() {
$("#submit_js").click(function() {
$.post("user_submit.php", {
comment: $("#comment").val()
});
});
});

完成后,Firebug 控制台显示如下:

<html>
<body>

Your vote was successfully registered!any text but this
</body>
</html>

我将整个 user_submit.php 文件粘贴到此处:

  <html>
<body>

<?php

$vote = $_REQUEST['vote'];
$aid = $vote;


//$comment = $_REQUEST['#comment'];
//$comment = print_r($_POST);
$comment = htmlspecialchars($_POST["comment"]);
//$comment = $_POST['comment'];
//echo htmlspecialchars($comment);
//$comment = $_POST['comment'];
//echo $comment;

// include configuration file
include('config.php');

// open database connection
$connection = mysql_connect($host, $user, $pass) or die('ERROR: Unable to connect!');

// select database
mysql_select_db($db) or die('ERROR: Unable to select database!');

// update vote counter
$query = "UPDATE answers SET acount = acount + 1 WHERE aid = $vote";
$result = mysql_query($query);
$cadd = "INSERT INTO comments (comment,aid) VALUES ('$comment', '$aid')";
mysql_query($cadd);

// close connection
mysql_close($connection);

// print success message
echo 'Your vote was successfully registered!';
echo $comment;
//print_r(array_count_value($comment));

?>


</body>
</html>

请帮帮我。我已经被这个问题困扰了好几个小时了。

**编辑:根据要求提交按钮的 HTML **

<div id="greetings">
You are voting out <b style="color: #00b0de;" id=roadiename></b>. Care to explain why?<br/><br/>
<textarea name="textarea" id="comment" cols="38" rows="7">textarea</textarea><br>
<a href="#" id="submit_js"><img src="images/submit.gif" style="border: none; float:right; padding-top: 10px;padding-right: 10px;"/></a>
</div>

最佳答案

尝试:

$("#submit_js").click(function() {
$.post("user_submit.php", {comment: $("#comment").val()}, function(data){
alert(data);
//this is the function where you would handle the returned text/html/json
//whatever that you're php script returns. The data is what you're seeing
//inside firebug.
});
});

这是 $.post 的文档

编辑

问题是您期望 PHP 处理回显,它正在执行此操作,但由于它是 AJAX 请求,因此 javascript 需要对服务器发送给它的内容执行某些操作。您的 javascript 中没有任何类型的处理程序。 PHP 正在返回您告诉它的值,并且浏览器正在获取它,但它只是没有对其执行任何操作。

至于数据库,我会确保您实际上正在建立与数据库的连接,并且您使用的变量中有一些内容。您也没有向 POST 中的脚本发送任何 $_REQUEST['vote'] 值,并且它不在您的网址中,因此这就是第一个查询未更新的原因

关于php - 无法接收 php 文件中的 POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1938203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com