Jump to content
  • 0

Pagination


insy
 Share

Question

При постраничном выводе получилось слишком много страниц, как уменьшить количество и выводить например по 20?

Тоесть должно получиться примерно следующие

|1| 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 -> >>

где -> это на 20 вперед

а >> это на последнюю

а когда стоишь на 30 к примеру, то и назад также...

Страниц очень много(755).

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

<?php

$num_pages = ceil($page_cnt/20);

for($i=1;$i<=$num_pages;$i++) {

?>

<a href = "java script:submitPagination('<?=$i;?>')"><?=$i;?></a>

<?php }?>

примерно так... запрос слишком большой выложить не получиться....

 <?php 

$num_pages = ceil($page_cnt/20);
for($i=1;$i<=$num_pages;$i++) {

?>
<a href = "java script:submitPagination('<?=$i;?>')"><?=$i;?></a>

<?php }?>

Наверное лучше так

Link to comment
Share on other sites

  • 0

"for($i=1;$i<=$num_pages;$i++) {"

for ($i = $page_start; $i < 20; $i++)

как то так попробуй покапать, надо только стартовую рассчитывать

на последнюю что то типа этого

      echo"<a href='".$_SERVER['PHP_SELF']."&page=".$page_total."'>".$page_total."</a>";

не уверен что рабочий вариант правда

Edited by gesandte
Link to comment
Share on other sites

  • 0
а предыдущие как убрать?

и еще вопрос, как это оптимизировать... у меня 750 страниц, я же не буду каждый раз новый цикл писать...

так предыдущие и убируться, т.к. цикл будет начинать с числа на 20 больше.

Вообще в таких случаях надо ифы применять для проверки условий, и в зависимости от текущей страницы чтобы срабатывал определенный алгоритм.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy