用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3941|回复: 1
收起左侧

[库 Library] 修改后的Pagination.php

[复制链接]
发表于 2009-10-11 15:32:58 | 显示全部楼层 |阅读模式
比方每页显示3条,修改后的URL会变成
index.php/con/1
index.php/con/2
index.php/con/3
index.php/con/4
而原来是
index.php/con/
index.php/con/3
index.php/con/6
index.php/con/9

不过在 SQL 那里需要这样写
PHP复制代码
$offset = ($_GET['p'] - 1) * $num_pages;
复制代码
SQL复制代码
SELECT * FROM usertable LIMIT $offset, $num_pages
复制代码

Pagination.rar

2.35 KB, 下载次数: 17

评分

参与人数 1威望 +5 收起 理由
Hex + 5 原创内容

查看全部评分

发表于 2009-10-11 16:51:11 | 显示全部楼层
呵呵,也就是把原来的偏移量改成了真正的页数。

本版积分规则