我正在使用PHP 5.3,我想将html表单中的数据插入到数据库中。期待这一点没有错误:
PHP警告:mysqli_error()只需要1个参数,0给定
这是我的疑问:
$con->query("INSERT INTO anime ('original_title', 'japan_title', english_title', 'studio', 'season', 'year', 'state', 'type', 'description', 'created',)
VALUES
('$otitle', '$jtitle', '$etitle', '$studio', '$season', '$year', '$status', '$type', '$des', '$created')") or die(mysqli_error());
答案 0 :(得分:0)
在插入行的末尾有一个额外的逗号,这意味着插入查询需要另一个未出现在值中的字段(第1行):
, 'state', 'type', 'description', 'created',)
可能意味着:
, 'state', 'type', 'description', 'created')
----------------------------------------------- ---------------------- ^