BUG:php
Error Number: 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 ''4'' at line 1url
SELECT a.*,b.user_nickname, b.user_head_url from qk_user_album a, qk_user b where a.album_user_id = b.user_id ORDER BY a.album_create_date desc LIMIT 0, '4';spa
Filename: D:\DEV_PHP\WAMP\www\qk\system\database\DB_driver.phporm
Line Number: 330server
问题解决:字符串
这里用到的是limit语法,两个参数应该都是数字,不该该出现字符串it
查明的缘由是PHP传递参数的时候,第二参数没有作转换,加一个intval函数,字符串转数字便可io