PHP分页显示页面指示器

时间:2012-12-28 12:34:15

标签: php mysql activerecord paging indicator

我查找了许多类似的脚本,但没有工作

有当前代码

<?php
   $LimitPerPage = 3;

   $CurrentPage = 1;
   if(isset($_GET['p'])){
      $CurrentPage = $_GET['p'];
   }

   $PageOffset = ($CurrentPage - 1) * $LimitPerPage;
   $image = imagedb::find_all_by_owner($email,array('limit' => $LimitPerPage,'offset' => $PageOffset));
   $TotalPage = ceil(count($linkerimage)/$LimitPerPage);

   if(!is_null($image)){
    // ..show image code
   }
?>

如何开发用于切换页面的导航栏?

EG。上一页[1] [2] [3] [4] ...... [64]下一页

粗体是当前页面。

1 个答案:

答案 0 :(得分:0)

您可以从here

复制分页逻辑