php新手 本来想弄个分页但是下面的sql语句好像执行不了总是报错

2024-12-15 10:04:36
推荐回答(4个)
回答1:

语法不对,$sqls = "select * from content order by id asc limit ".($pageID-1)*$PageSize.",".$PageSize; 这样就行了

回答2:

在双引号中的字符串不会计算,可改为如下
$sqls = "select * from content order by id asc limit ".($pageID-1)*$PageSize.",$PageSize";

回答3:

检查 content表示否在对应的数据库中,或者content表示否实际存在.

回答4:

双引号里不能运算