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貢獻1963條經驗 獲得超6個贊
您的查詢有8個甚至可能是9個變量,即。名稱,描述等但是值,這些東西---> '', '%s', '%s', '%s', '%s', '%s', '%s', '%s')"
,只有7個,變量的數量必須與值相同。
我有同樣的問題,但我想出來了。希望它也適合你。
- 3 回答
- 0 關注
- 2600 瀏覽
添加回答
舉報
0/150
提交
取消