0

我查找了许多类似的脚本但没有用

有当前代码

<?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
   }
?>

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

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

粗体是当前页面。

4

1 回答 1

0

您可以从此处复制分页逻辑

于 2012-12-28T17:42:34.937 回答