前端之家收集整理的这篇文章主要介绍了
php – MySQL列数与第1行的值计数不匹配,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用
PHP将数据插入
MysqL表,但得到
错误
Column count doesn’t match value count at row 1
MysqL_query("INSERT INTO file (id,filename,extention,filelink,filesize,filepass) VALUES('{$random}','{$filename}','{$extension}','{$filelink}','{$filesize}' '{$filepass}') ") or die(MysqL_error());
MysqL_query("INSERT INTO file (id,'{$filesize}' '{$filepass}') ") or die(MysqL_error());
您应该在{$filesize}之后添加缺少的逗号:
MysqL_query("INSERT INTO file (id,'{$filesize}','{$filepass}') ") or die(MysqL_error());