PHP查询分页的实现代码
程序员文章站
2024-03-09 16:03:59
本文实例为大家分享了php查询分页的具体代码,后端基于thinkphp框架,供大家参考,具体内容如下
前端需要datatables插件:传送门下载地址&nbs...
本文实例为大家分享了php查询分页的具体代码,后端基于thinkphp框架,供大家参考,具体内容如下
前端需要datatables插件:传送门下载地址
html代码
第一步引入插件
<!-- datatables css --> <link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/1.10.15/css/jquery.datatables.css" rel="external nofollow" > <!-- jquery --> <script type="text/javascript" charset="utf8" src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <!-- datatables --> <script type="text/javascript" charset="utf8" src="http://cdn.datatables.net/1.10.15/js/jquery.datatables.js"></script>
第二步添加
<table id="table_id_example" class="display"> <thead> <tr> <th>id</th> <th>发布时间</th> <th>发布ip</th> <th>公告内容</th> </tr> </thead> <tbody> <volist name="notice" id="vo"> <tr> <td>{$vo.id}</td> <td>{$vo.create_time}</td> <td>{$vo.create_ip}</td> <td>{$vo.notice_content}</td> </tr> </volist> </tbody> </table>
第三步js
<script> $(document).ready( function () { $('#table_id_example').datatable(); } ); </script>
php代码
public function gonggaochakan(){ /* 公告查看 */ $dbnotice = m('notice');//实例化dbnotice对象 $count = $dbnotice->count();// 查询满足要求的总记录数 $page = new \think\page($count,$count);// 实例化分页类 传入总记录数和每页显示的记录数(全部记录) $data = $dbnotice->order('create_time')->limit($page->firstrow.','.$page->listrows)->select();//获得所有记录 $this->assign('notice',$data);//传给模板 $this->show(); }
效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。