How do you implement pagination in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T15:17:14Z http://stackoverflow.com/feeds/question/267892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php 0 How do you implement pagination in PHP? Meenakshi 2008-11-06T07:55:11Z 2008-11-07T02:07:16Z <p>How are paged results commonly implemented in PHP?</p> <p>I'd like to have a results page with 10 results. Paging forward in the navigation would give me the next and previous sets.</p> <p>Is there a way this is commonly done? Does anyone have simple advice on getting started?</p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/267900#267900 0 Answer by Factor Mystic for How do you implement pagination in PHP? Factor Mystic 2008-11-06T08:00:44Z 2008-11-06T08:00:44Z <p>The term you are referring to is "pagination". Unfortunately you'll have to give some more information to get a more specific answer.</p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/267901#267901 0 Answer by Aron Rotteveel for How do you implement pagination in PHP? Aron Rotteveel 2008-11-06T08:01:53Z 2008-11-06T08:01:53Z <p>What you are looking for is called <a href="http://stackoverflow.com/search?q=pagination">pagination</a>. There have been several questions on SO about this subject. As your question is very broad, please provide more details or refer to the questions that have already been asked about this subject.</p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/267902#267902 3 Answer by keparo for How do you implement pagination in PHP? keparo 2008-11-06T08:02:12Z 2008-11-06T08:12:45Z <p>You'll need a beginner's understanding of PHP, and probably some understanding of relational databases.</p> <p>Pagination is often implemented with some simple query parameters.</p> <pre><code>stackoverflow.com/myResults.php?page=1 </code></pre> <p>The page increments the query parameter:</p> <pre><code>stackoverflow.com/myResults.php?page=2 </code></pre> <p>On the back end, the page value usually corresponds to the limits and offsets in the query that is being used to generate the results.</p> <p><strong>Related Questions</strong>:</p> <ul> <li><a href="http://stackoverflow.com/questions/207223/php-dynamic-pagination-without-sql"><strong>PHP Dynamic Pagination without SQL</strong></a></li> <li><a href="http://stackoverflow.com/questions/230058/paginated-query-using-sorting-on-different-columns-using-rownumber-over-in-sql"><strong>Paginated Query sorting on different columns in SQL Server 2005</strong></a></li> <li><a href="http://stackoverflow.com/questions/163809/smart-pagination-algorithm"><strong>Smart pagination algorithm</strong></a></li> </ul> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/268006#268006 0 Answer by Ciaran McNulty for How do you implement pagination in PHP? Ciaran McNulty 2008-11-06T09:04:49Z 2008-11-06T09:04:49Z <p>It may be worth looking at the Zend Framework's Zend_Paginator object. It encapsulates a lot of the logic of generating next/previous/first/last type links.</p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/268012#268012 0 Answer by Cruachan for How do you implement pagination in PHP? Cruachan 2008-11-06T09:09:24Z 2008-11-06T09:09:24Z <p>The <a href="http://www.tinybutstrong.com" rel="nofollow">TinyButStrong </a> template system comes with a pagination extension. Very easy to use. </p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/268056#268056 0 Answer by troelskn for How do you implement pagination in PHP? troelskn 2008-11-06T09:26:40Z 2008-11-06T09:26:40Z <p>Just Google for <a href="http://www.google.com/search?q=php+pagination" rel="nofollow">php+pagination</a></p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/268114#268114 0 Answer by pbrodka for How do you implement pagination in PHP? pbrodka 2008-11-06T09:48:22Z 2008-11-06T09:48:22Z <p>If database is not so big - I implement pagination on client side. I recommend jquery plugin tablefilter - it gives you not only pagination, but also filtering and sorting. You can easily browse through given recordset. It's very good solution if performance is not very important. There's page: <a href="http://ideamill.synaptrixgroup" rel="nofollow">http://ideamill.synaptrixgroup</a>. and demo for 830 records: <a href="http://ideamill.synaptrixgroup.com/jquery/tablefilter/largetabletest.htm" rel="nofollow">http://ideamill.synaptrixgroup.com/jquery/tablefilter/largetabletest.htm</a></p> http://stackoverflow.com/questions/267892/how-do-you-implement-pagination-in-php/271035#271035 0 Answer by starmonkey for How do you implement pagination in PHP? starmonkey 2008-11-07T02:07:16Z 2008-11-07T02:07:16Z <p>For server-side paging, I use PEAR's Pager package (<a href="http://pear.php.net/package/Pager" rel="nofollow">http://pear.php.net/package/Pager</a>).</p> <p>Take a look at example.php for basic usage, and Page_Wrapper.php (I started with Pager_Wrapper_DB).</p> <p>The end-user docs are quite comprehensive: <a href="http://pear.php.net/manual/en/package.html.pager.intro.php" rel="nofollow">http://pear.php.net/manual/en/package.html.pager.intro.php</a></p>