实际上我正在开发一个小的PHP脚本!我最近添加了一些功能,无论如何我还有一个问题是: 在html文件中我已经把textarea和一个提交输入我希望当用户点击它时textarea的信息将被发送到一个php文件而不刷新页面! 谢谢。
答案 0 :(得分:0)
然后你应该看看ajax:
http://api.jquery.com/jquery.ajax/
$("#mysubmitbutton").click(function() {
$.ajax({
url: "mywebsite.com/save-comment.php",
type: "post",
data: {commentText: $("#comment").val()},
success: function(text) {
if(text == "true") {
alert("It worked! Your data were saved hurrayyy!");
}
},
error: function() {
alert("Print some error here!");
}
});
});
在服务器端接受您的数据:
$myText = $_POST["commentText"];
$query = "UPDATE comment SET text = '" . mysql_real_escape_string($myText) . "'";
if(mysql_query($query) == true) {
echo "true";
} else {
echo "false";
}
die();