我在 wamp 服务器上试图为我的网站制作一个小张贴系统。
我要发布的 PHP 是:
$c=mysql_connect("localhost","root","") or die(mysql_error());
mysql_select_db("postes");
$t = $_POST['title'];
$body = $_POST['body'];
$ts = time();
$query = mysql_query("INSERT INTO `postes`(`title`, `text`, `timestamp`) VALUES (`$t`,`$body`,`$ts`)") or die(mysql_error());
然后我使用 Ajax 发送:
$(document).ready(function () {
$('#send').click(function () {
var n = $('#title').val(),
e = $('#body').val();
$.post('post.php', {
title: n,
body: e
}, function (data) {
alert(data)
});
});
});
无论我在网站的标题字段中输入什么内容,都会出现错误。它说:“'字段列表'中的未知列'{text}'”
我什至没有在 sql 的列部分输入标题,所以我不明白。另外,我是 PHP 和 Mysql 的新手