当前位置:Gxlcms > PHP教程 > php查询分页代码

php查询分页代码

时间:2021-07-01 10:21:17 帮助过:1人阅读

这篇文章主要为大家详细介绍了PHP查询分页的实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了PHP查询分页的具体代码,后端基于thinkphp框架,供大家参考,具体内容如下

前端需要dataTables插件:传送门下载地址

HTML代码

第一步引入插件

  1. <!-- DataTables CSS -->
  2. <link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/1.10.15/css/jquery.dataTables.css" rel="external nofollow" >
  3. <!-- jQuery -->
  4. <script type="text/javascript" charset="utf8" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
  5. <!-- DataTables -->
  6. <script type="text/javascript" charset="utf8" src="http://cdn.datatables.net/1.10.15/js/jquery.dataTables.js"></script>

第二步添加

  1. <table id="table_id_example" class="display">
  2. <thead>
  3. <tr>
  4. <th>ID</th>
  5. <th>发布时间</th>
  6. <th>发布IP</th>
  7. <th>公告内容</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <volist name="notice" id="vo">
  12. <tr>
  13. <td>{$vo.id}</td>
  14. <td>{$vo.create_time}</td>
  15. <td>{$vo.create_ip}</td>
  16. <td>{$vo.notice_content}</td>
  17. </tr>
  18. </volist>
  19. </tbody>
  20. </table>

第三步JS

  1. <script>
  2. $(document).ready( function () {
  3. $('#table_id_example').DataTable();
  4. } );
  5. </script>

PHP代码

  1. public function gonggaochakan(){
  2. /* 公告查看
  3. */
  4. $dbNotice = M('notice');//实例化dbNotice对象
  5. $count = $dbNotice->count();// 查询满足要求的总记录数
  6. $Page = new \Think\Page($count,$count);// 实例化分页类 传入总记录数和每页显示的记录数(全部记录)
  7. $data = $dbNotice->order('create_time')->limit($Page->firstRow.','.$Page->listRows)->select();//获得所有记录
  8. $this->assign('notice',$data);//传给模板
  9. $this->show();
  10. }


效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

以上就是php查询分页代码的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行