Smart pagination algorithm
        Posted  
        
            by silvertab
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by silvertab
        
        
        
        Published on 2008-10-02T18:22:34Z
        Indexed on 
            2010/05/03
            16:58 UTC
        
        
        Read the original article
        Hit count: 297
        
php
|pagination
I'm looking for an example algorithm of smart pagination. By smart, what I mean is that I only want to show, for example, 2 adjacent pages to the current page, so instead of ending up with a ridiculously long page list, I truncate it.
Here's a quick example to make it clearer... this is what I have now:
Pages: 1 2 3 4 [5] 6 7 8 9 10 11
This is what I want to end up with:
Pages: ... 3 4 [5] 6 7 ...
(In this example, I'm only showing 2 adjacent pages to the current page)
I'm implementing it in PHP/Mysql, and the "basic" pagination (no trucating) is already coded, I'm just looking for an example to optimize it... It can be an example in any language, as long as it gives me an idea as to how to implement it...
© Stack Overflow or respective owner