Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have custom PHP site and using this script for pagination.

echo "Page <strong>$pagenum</strong> of <strong>$last</strong><br><br>";
    if ($pagenum == 1)
    {
    }
    else
        {
        echo "<li> <a href='{$_SERVER['PHP_SELF']}?pagenum=1'><strong>First page</strong></a></li>";
        echo " ";
        $previous = $pagenum-1;
        echo "<li> <a href='{$_SERVER['PHP_SELF']}?pagenum=$previous'>".$previous."</a></li>";
        }

        echo "";


    if ($pagenum == $last)
        {           
        }
    else {
        $next = $pagenum+1;
        echo "  ....  <li><a href='{$_SERVER['PHP_SELF']}?pagenum=$next'> ".$next."</a></li>";
        echo " ";
        echo "<li><a href='{$_SERVER['PHP_SELF']}?pagenum=$last'><strong>Last page</strong></a></li>";
    } 

This only shows last two pages, not even first page. How to customize it to display first 5 and last 5 pages.

share|improve this question
4  
Do you know PHP? – markus Nov 25 '12 at 0:29
Wtf is a "custom" php site? – ChocoDeveloper Nov 25 '12 at 0:29
I don't know too much. Site is not in any open source CMS. – Ahmad Nov 25 '12 at 0:33
Apparently, the pages to display are in variable $pagenum. That is the variable to check. – faa Nov 25 '12 at 0:39
2  
Learn about PHP, try something, come back with a concrete question. As it is now, it's a please write my code for me question. – markus Nov 25 '12 at 0:53
show 1 more comment

closed as not constructive by markus, Jocelyn, Michael Berkowski, Fahim Parkar, David Segonds Nov 25 '12 at 9:30

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 0 down vote accepted

It all depends on where and how your pages are stored though! if you do that with a database, you would need to check if the $pagenum ( which we don't see defined anywhere ) has previous/next pages... and based on that you draw you +/- 5 pages anchors! preferably doing some looping!

On the other hand if you are not using any database and just want to show some content based on the ?pagenum=(number) which is what you seem to do here! you would need to get the current page via $_GET['pagenum'] once the user is on the new page! so that the content displays properly!

$pagenum = isset( $_GET['pagenum'] ) ? intval($_GET['pagenum']) : 0;

well then you simply do something like :

echo "<a href=\"{$_SERVER['PHP_SELF']}?pagenum=$first\">first</a>";

for ( $i = $pagenum-5; $i <= $pagenum+5; ++$i ) // check if the pages exist as well somewhere ;)
{
    if ( $pagenum != $i ) 
    {
        echo "<a href=\"{$_SERVER['PHP_SELF']}?pagenum=".($i)."\">$i</a>";
    }
    else
    {
        echo "<a href=\"#\">Current</a>";
    }
}

echo "<a href=\"{$_SERVER['PHP_SELF']}?pagenum=$last\">last</a>";

if that "method" is too basic to you have a look at this ones simple-php-mysql-pagination, how-to-paginate-data-with-php, basic-pagination

share|improve this answer
Thanks a lot, worked alright :) – Ahmad Nov 25 '12 at 1:13
@Ahmad you're welcome ;) – Ivo Nov 25 '12 at 1:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.