Dreamweaver生成的som sql代码无效。我相信这是错误的起源:
$insertSQL = sprintf("INSERT INTO gjestebok (tidsstempel, tittel, navn, tekst) VALUES (NOW(), (%s, %s, %s)",
GetSQLValueString($_POST['tittel'], "text"),
GetSQLValueString($_POST['navn'], "text"),
GetSQLValueString($_POST['tekst'], "text"));
当我尝试将其插入我的数据库时,它会向我显示以下消息:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
有人可以发现错误吗?
编辑:发现错误。这是我必须删除的第一个“%s”前面的“(”)。