我的MYSQL查询未通过我所做的表单正确插入。查询:
mysql_query("INSERT INTO Servers(ip, desc, type, title)
VALUES($ip, $desc, $type, $title)"
) or die(mysql_error());
MYSQL表如下:
CREATE TABLE IF NOT EXISTS Servers(
id bigint(20) NOT NULL AUTO_INCREMENT,
ip varchar(50) NOT NULL,
desc text NOT NULL,
type varchar(15) NOT NULL,
title varchar(50) NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3;
我已经在表格中有两个预制行。表格代码:
<form action="" method="post">
Title: <input type="text" name="title" /><br />
IP: <input type="text" name="ip" /><br />
Description:<br />
<textarea name="desc"></textarea><br />
Type: <input type="text" name="type" /><br />
<input type="submit" name="submit" value="Submit server!" />
</form>
当我提交服务器时,出现以下错误:
You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near 'desc, type,
title) VALUES(a, a, a, a)' at line 1
答案 0 :(得分:3)
试试这个
mysql_query("INSERT INTO `Servers` (`ip`, `desc`, `type`, `title`) VALUES('".$ip."', '".$desc."', '".$type."', '".$title."')") or die(mysql_error());
desc
是MySql的保留关键字,因此不能在没有反引号的情况下使用它。
答案 1 :(得分:1)
插入字符串值时应使用引号:
mysql_query("INSERT INTO Servers(ip, desc, type, title) VALUES('$ip' , '$desc', '$type', '$title')") or die(mysql_error());
答案 2 :(得分:0)
desc是一项保留的工作,你必须使用``。当你的字段是(var)字符,而不是数字时, 你必须在脚本中用引号括起来。