2010-05-10 51 views
4

自從我更新我的網頁分頁後,我試圖添加FirstLast鏈接到我的分頁以及...當搜索結果很長時。例如,我試圖在下面的示例中實現以下內容。有人能幫我修復我的代碼,以便我可以更新我的網站。謝謝PHP&MySQL分頁更新幫助

First Previous 1 2 3 4 5 6 7 ... 199 200 Next Last 

我目前有以下顯示使用我的代碼。

Previous 1 2 3 4 5 6 7 Next 

這是顯示鏈接的分頁代碼的一部分。

if ($pages > 1) { 

    echo '<br /><p>'; 

    $current_page = ($start/$display) + 1; 

    if ($current_page != 1) { 
     echo '<a href="index.php?s=' . ($start - $display) . '&p=' . $pages . '">Previous</a> '; 
    } 

    for ($i = 1; $i <= $pages; $i++) { 
     if ($i != $current_page) { 
      echo '<a href="index.php?s=' . (($display * ($i - 1))) . '&p=' . $pages . '">' . $i . '</a> '; 
     } else { 
      echo '<span>' . $i . '</span> '; 
     } 
    } 

    if ($current_page != $pages) { 
     echo '<a href="index.php?s=' . ($start + $display) . '&p=' . $pages . '">Next</a>'; 
    } 

    echo '</p>'; 

} 
+0

你能更具體,你的問題是什麼? – awgy 2010-05-11 03:10:42

回答

0

剛剛獲得總走回頭路和:

$result_count = 200; // hypothetical 

// run your regular code..... 

$end_pages_to_display = 3; 

for($i = $result_count; $i <= ($result_count - $end_pages_to_display); $i--) 
{ 
    echo "<a href='index.php?page={$i}'>{$i}</a>"; 
} 

我的意思是......這不是那將適合您的網站的代碼,但它是完全一樣的邏輯。

0

我不確定你的''和'p'$ _GET變量是用於(鹽和胡椒粉?),所以我只是使用'p',頁面。

<?php 
$max = '20'; 
if ($pages > 1) { 

    echo '<br /><p>'; 

    $current_page = ($start/$display) + 1; 

    //add this here... first will always be one 
     echo '<a href="index.php?p=1">First</a>'; 
    if ($current_page != 1) { 
     echo '<a href="index.php?s=' . ($start - $display) . '&p=' . $pages . '">Previous</a> '; 
    } 

    for ($i = 1; $i <= $pages; $i++) { 
     if ($i != $current_page) { 
      echo '<a href="index.php?s=' . (($display * ($i - 1))) . '&p=' . $pages . '">' . $i . '</a> '; 
     } else { 
      echo '<span>' . $i . '</span> '; 
     } 
     // add this here... 
     if ($i == $max){ 
      // stop the for() loop 
      break; 
     // not so fancy way of displaying last two pages, use other example if you want to get fancy. 
     echo '<a href="index.php?p=' . ($pages - 1) . '">'.($pages - 1).'</a> '; 
     echo '<a href="index.php?p=' . ($pages) . '">'.($pages).'</a> '; 

     } 
    } 

    if ($current_page != $pages) { 
     echo '<a href="index.php?s=' . ($start + $display) . '&p=' . $pages . '">Next</a>'; 
    } 
     echo '<a href="index.php?p=1">Last</a>'; 
    echo '</p>'; 

} 
?>