为了账号安全,请及时绑定邮箱和手机立即绑定

请问PHP,MySQL错误:列计数与第1行的值计数不匹配

请问PHP,MySQL错误:列计数与第1行的值计数不匹配

PHP
郎朗坤 2019-12-02 08:04:01
PHP,MySQL错误:列计数与第1行的值计数不匹配我收到这个错误:Column count doesn't match value count at row 1从以下代码:$name = $_GET['name'];$description = $_GET['description'];$shortDescription = $_GET['shortDescription'];$ingredients = $_GET['ingredients'];$method = $_GET['method'];//$image = $_GET['image'];$username = $_GET['username'];$length = $_GET['length'];$dateAdded = uk_date();$conn = mysql_connect('localhost', 'dbname', 'pass');mysql_select_db('dbname');$query = sprintf("INSERT INTO dbname (id, Name, Description, shortDescription, Ingredients, Method, Length, dateAdded, Username) VALUES ('', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",     mysql_real_escape_string($name),     mysql_real_escape_string($description),     mysql_real_escape_string($shortDescription),     mysql_real_escape_string($ingredients),     //mysql_real_escape_string($image),     mysql_real_escape_string($length),     mysql_real_escape_string($dateAdded),     mysql_real_escape_string($username));     $result = mysql_query($query) or die(mysql_error());错误是什么意思?
查看完整描述

3 回答

?
翻过高山走不出你

TA贡献1875条经验 获得超3个赞

您列出了9个字段,但只有8个值。尝试添加方法。

查看完整回答
反对 回复 2019-12-03
?
达令说

TA贡献1821条经验 获得超6个赞

您的查询有8个甚至可能是9个变量,即。名称,描述等但是值,这些东西---> '', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",只有7个,变量的数量必须与值相同。

我有同样的问题,但我想出来了。希望它也适合你。


查看完整回答
反对 回复 2019-12-03
  • 3 回答
  • 0 关注
  • 275 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信