You have an error in your SQL syntax,该怎么解决

WBOY
Release: 2016-06-13 13:24:24
Original
3376 people have browsed it

You have an error in your SQL syntax
function _query($_sql) {
if (!$_result = mysql_query($_sql)) {
exit('SQL执行失败'.mysql_error());
}
return $_result;
}
function _fetch_array($_sql) {
return mysql_fetch_array($this->_query($_sql),MYSQL_ASSOC);
}
function _is_repeat($_sql,$_info) {
if ($this->_fetch_array($_sql)) {
_alert_back($_info);
}
}

_is_repeat(
"SELECT commodity_name FROM commodity WHERE commodity_name='{$_goods['commodity_name']}' LIMIT 1",
'对不起,此商品已经存在'
);
$DB->_query(
"INSERT INTO commodity(
commodity_name,
Sale_Address,
Seller,
Production_Address,
Company,
permit_number,
content
)
VALUES(
'{$_goods['commodity_name']}' ,
'{$_goods['Sale_Address']}',
'{$_goods['Seller']}',
'{$_goods['Production_Address']}',
'{$_goods['Company']}',
'{$_goods['permit_number']}',
'{$_goods['content']}',

)"

);



?>

我的程序运行出现错误: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 ')' 。代码太多,我只把与问题相关的代码贴了出来,如果看不出来我可以发全部代码。希望各位大神帮帮忙,我还是个新手,希望能说的通俗一点,谢谢

------解决方案--------------------
'{$_goods['content']}', 这里多了个逗号

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!