| TOTAL: 10 Page: 1 of 1 |
|
Learn to paginate results from a mysql database in this easy example
In this tutorial we are going to create a pagination script. To begin with you need to create this table. Code CREATE TABLE `paganation_example` ( `id` int(5) NOT NULL auto_increment, `title` varchar(150) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; INSERT INTO `paganation_example` VALUES (1, '1'); INSERT INTO `paganation_example` VALUES (2, '2'); INSERT INTO `paganation_example` VALUES (3, 'Cows go moo'); INSERT INTO `pagan

| Hits: | 190 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
MySQL Record Pagination - Put your results on seperate pages!
What is pagination? You see pagination everyday when you use http://www.google.com, at the very bottom of the page, you will see a list of pages, all of which have the next set of records for your particular search. Whats the point? Well the most blatently obvious point is that you are able to deliver results to your users in chunks that are far easier to digest, and look much prettier =D Okay, enough chit-chat.. tell me how to do it! Okay, lets start with a simple query. PHP Code

| Hits: | 144 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
Database Results Paging in PHP and Mysql
This tutorial will cover paging the results from your MySQL database using PHP. It will give you this effect... Prev | First | ... | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | ... | Last | Next This tut requires intermediate MySQL and PHP knowledge.

| Hits: | 249 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
MySQL Record Pagination - Put your results on seperate pages!
What is pagination? You see pagination everyday when you use http://www.google.com, at the very bottom of the page, you will see a list of pages, all of which have the next set of records for your particular search. Whats the point? Well the most blatently obvious point is that you are able to deliver results to your users in chunks that are far easier to digest, and look much prettier =D

| Hits: | 148 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
Limiting MySQL Query Results (With Pagination)
Combining the power of a mySQL database with the flexibility of PHP allows even the most amateurish developer to create websites loaded with thousands of pages of information. But what do you do if you don't want to display all your QUERY data in one large lump? Can you imagine Google if it showed you 30,000 search results on a single page? To get around this problem we can use PHP's integral LIMIT function to restrict the number of results displayed on one page, and then set start and end po

| Hits: | 218 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
Pagination: Easy as PREV 1 2 3 NEXT (REVISED)
Now pagination could be done easily with plain HTML: Just add X amount of items to a page, make a new page, add more items, and finally inter-link the pages. As easy as this seems, this method will start to become a burden once you have over 100+ items you want to list. The manual labor of adding the code would be simply mundane, not to mention the logistics of inter-linking all the pages--imagine if you had over 10,000 items, or if your list was updated regularly, or if it was sorted! You'd hav

| Hits: | 149 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
Page Numbering With PHP And MySQL Results
Do you have a lot of MySQL results that are displayed on a single page? These results could consist of virtually anything to include news articles, member listings, products or whatever you want. Scrolling down through tons of results can be a real drag. In this tutorial we're going to cover how to create some very simple code to create page numbers and limit the number of results per page that you have.

| Hits: | 131 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-13 |
Split a String into Pages Using Just PHP and Display Dynamic Page Links
This tutorial will show you how to use PHP to seperate a string into different parts using the explode() function. Then, I will show you how to use the array we have created and then how to use it dynamically, based upon the $_GET variable. (This can be adapted for any input global!). And lastly, I will show an example for a pagination system based on this technique, where one cannot use MySQL.

| Hits: | 166 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-12 |
Pagination Tutorial -Simple and well explained pagination code for your site
This tutorial will teach you how to make that [1][2][3] pages system is very usefull if you have lots of results to display from a database.

| Hits: | 131 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-12 |
Create an advanced per page system - « 4 5 [6] 7 8 » links using per_page()
In this tutorial What i did is turn a normal per_page system that i got from phpfreaks about two years ago and added a function to display the pages. How this per page system is going to work is that you need to declare the per_page function in a config page or somewhere so u dont have it on 1 million pages on your site, here is what you need to add.

| Hits: | 117 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-12 |