开发者

How to change current pagination to show "back" and "next" instead of page numbers?

I want to be able to show "back" only if the user is on any other page but page #1 and then "next" should be shown on all pages except the last page.

 /* Setup page vars for display. */
if ($page == 0) $page = 1;  //if no page var is given,   default to 1.

  //next page is page + 1
  $lastpage = ceil($total_pages/$limit); //lastpage is = total pages 
  / items per page, rounded up.
$lpm1 = $lastpage - 1;   //last page minus 1

/* 
    Now we apply our rules and draw the pagination object. 
    We're actually saving the code to a variable in 
            case we want to draw it more than  once.
*/
$pagination = "";
if($lastpage > 1)
{   
    $pagination .= "<div class=\"pagination\"></div>";
    //previous button
    if ($page > 1) 
        $pagination.= "";
    else
        $pagination.= "";   

    //pages 
    if ($la开发者_开发问答stpage < 7 + ($adjacents * 2))   
            //not enough pages to bother breaking it up
    {   
        for ($counter = 1; $counter <= $lastpage; $counter++)
        {
            if ($counter == $page)
                $pagination.= 
        "<a id=\"numberhighlighter\" href=\"$targetpage?page=$counter\">Back &nbsp</a>";
            else
                $pagination.= 
        "<a id=\"numberhighlighter\" href=\"$targetpage?page=$counter\">Next &nbsp</a>";                    
        }
    }
    elseif($lastpage > 5 + ($adjacents * 2))    //enough pages to hide some
    {
        //close to beginning; only hide later pages
        if($page < 1 + ($adjacents * 2))        
        {
            for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
            {
                if ($counter == $page)
                    $pagination.= 
                "<span class=\"current\">$counter &nbsp</span>";
                else
    $pagination.= "<a href=\"$targetpage?page=$counter\">$counter &nbsp </a>";                  
         }
           $pagination.= "...";
           $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
      $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";     
        }
        //in middle; hide some front and some back
        elseif($lastpage - ($adjacents * 2) > 
                    $page && $page > ($adjacents * 2))
        {
    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
    $pagination.= "...";
    for ($counter = $page - $adjacents; $counter 
            <= $page + $adjacents; $counter++)
            {
                 if ($counter == $page)
        $pagination.= "<span class=\"current\">$counter</span>";
                else
        $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                 
           }
        $pagination.= "...";
        $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
        }
        //close to end; only hide early pages
        else
        {
        $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
        $pagination.= "&nbsp &nbsp &nbsp<a href=\"$targetpage?page=2\">2&</a>";

               $pagination.= "...";

              for ($counter = $lastpage - (2 + ($adjacents * 2)); 
              $counter <= $lastpage; $counter++)
            {
                if ($counter == $page)
                    $pagination.= "<span class=\"current\">$counter</span>";
                else
                    $pagination.= 
               "<a href=\"$targetpage?page=$counter\">$counter</a>";                    
            }
        }
    }

    //next button
    if ($page < $counter - 1) 
        $pagination.= "";
    else
        $pagination.= "";       
}

?>


First, declare variable like $next and then assign total page no. value like $next = $total_pages

Then check

if($next == $total_pages + 1)
{
    do nothing....
}
else
{
    echo " <a href=\".......\">Next</a>";
} 
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜