PHP页面记录显示逻辑
在单页上,我一次显示 20 条记录,并使用这些记录生成 PDF 及其个人资料,以便管理员导出/下载。
现在,我想要的是,例如。在第 4 页上,我正在通过,4 而我将拥有的实际记录将是 61 ~ 80.. 以及..
例如:
3rd page: 41 ~ 60 records
4th page: 61 ~ 80 records
5th page: 81 ~ 100 records and so on..
有人知道吗,我如何通过动态开始和结束查询限制 在这种情况下?
On single page, I am displaying 20 records at a time and with that records, I am generating PDF with their profile to export / download for admin.
Now, what i want is, for ex. on 4th Page i am passing, 4 while actual records i will have will be 61 ~ 80.. and on..
for example:
3rd page: 41 ~ 60 records
4th page: 61 ~ 80 records
5th page: 81 ~ 100 records and so on..
Does Any one have idea, How can i pass dynamic Start and End query limit in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单(不要将以下视为有效的
PHP
代码!因为......它不是):所有逻辑。
Simple (don't consider following as valid
PHP
code! Because.... it's not):all logic.