我創建像發佈系統Facebook的插入..我的文章沒有在我的DATABSE
我的問題今天似乎並沒有插入我從文本區進入我的數據庫中的值。 。
這裏是我的Java腳本:
$("#share").click(function()
{
//var typeNew = document.getElementById("content").value;
var update = $("textarea#content").val();
//document.write(update);
if(update.length == 0)
{
alert("empty, please type something.");
//$(this).html('<meta http-equiv=\"Refresh\" content=\"1; URL=insert.php\">');
}
else
{
//$("#flash").show();
$("#flash").html('<img src="loader.gif" />Loading Comment...').fadeIn("slow");
$.ajax({
type: "POST",
url: "post_update.php",
data: 'update=' + update,
success: function(msg)
{
$("#flash").ajaxComplete(function(event, request, settings){
//alert("Successfully Inserted")
$("#flash").hide();
//$(this).html('<meta http-equiv=\"Refresh\" content=\"1; URL=insert.php\">');
});
}
});
}
return false;
});
那麼這裏是我的PHP代碼:
<?php
$post=$_REQUEST['update'];
$post=$_POST['update'];
//echo '$post';
@ $db = new mysqli('localhost', 'root', '', 'wall');
if(mysqli_connect_errno())
{
echo "Error! Could not connect to database. Reset fields.";
exit;
}
$sql = "INSERT INTO posts(update,date_posted) VALUES('$post',NOW())";
$result = $db->query($sql);
if($result){
echo 'OK';
}
else{
echo 'FAIL';
}
$db->close();
>
有人可以告訴我,什麼是錯的? 它運作良好,當刪除功能是錯誤的,但現在,它的功能我分享功能不起作用..
您是否嘗試打印fina插入查詢來分析值? – Arfeen 2012-01-06 07:02:52
[鮑比 - 表(http://bobby-tables.com/)想首先把它給數據庫之前來玩... – Quentin 2012-01-06 07:03:25
淨化你的$崗位。 – jerrymouse 2012-01-06 07:07:53