$ sql =" SELECT * FROM billing ORDER BY billing_no limit:go,5&#34 ;; $ stmt = $ db-> prepare($ sql); $ stmt - > execute(array(' :去' = GT; $去));

时间:2017-03-27 12:33:07

标签: php mysql pdo

我只是在我的一个项目中尝试分页,我收到了这样的错误

Fatal error: Uncaught PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 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 ''0',5' at line 1

请帮助我..

1 个答案:

答案 0 :(得分:0)

您收到此错误,因为$ go参数是作为字符串而不是int插入的。 我建议在执行前绑定参数。你可以这样做:

$stmt->bindParam(':go', $go, PDO::PARAM_INT);