自從我更新我的網頁分頁後,我試圖添加First
和Last
鏈接到我的分頁以及...
當搜索結果很長時。例如,我試圖在下面的示例中實現以下內容。有人能幫我修復我的代碼,以便我可以更新我的網站。謝謝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>';
}
你能更具體,你的問題是什麼? – awgy 2010-05-11 03:10:42