此查询产生错误:
您的SQL语法有错误;检查与MySQL服务器版本对应的手册,以便在第1行的''附近使用正确的语法
也许因为我累了,我在这里找不到问题...
mysqli_query($db, "INSERT INTO `tbl_bugresponse` (`id`, `bugid`, `by`, `content`, `time`) VALUES ('NULL', '$id', '$name', '$content', '$dt'") or die(mysqli_error($db));
感谢:)
答案 0 :(得分:1)
关闭sql的括号,你只有mysqli_query函数的结束括号
答案 1 :(得分:0)
你可能想要这个:
mysqli_query($db, "INSERT INTO `tbl_bugresponse` (`id`, `bugid`, `by`, `content`, `time`) VALUES (NULL, '$id', '$name', '$content', '$dt')") or die(mysqli_error($db));
此外,您提供的查询对SQL注入攻击持开放态度。我建议查找参数化查询。