PHP forums, MySQL forums, Web Development resources

Home PageHome    PHP ResourcesTopic List    FAQFAQ    SearchSearch    MemberlistMemberlist    UsergroupsUsergroups 
 RegisterRegister
    ProfileProfile    Log in to check your private messagesLog in to check your private messages    Download the RSS Reader RSS Feed Download the RSS Reader RSS for this forum Log inLog in 

PHP Forum :: MySQL Forum :: Java Script Forum



show 3 records per page

 
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General
View previous topic :: View next topic  
Author Message
clodia



Joined: 12 Jul 2007
Posts: 16

PostPosted: Sun Oct 21, 2007 6:56 pm    Post subject: show 3 records per page Reply with quote

How can i show 3 records per page by using PHP if i have 20 records?

Thanks,

clodia
Back to top
View user's profile Send private message
lostboy



Joined: 02 May 2004
Posts: 6033
Location: toronto, canada

PostPosted: Sun Oct 21, 2007 7:07 pm    Post subject: Reply with quote

http://www.weberdev.com/get_example-4092.html is one example...search on paging to find more
Back to top
View user's profile Send private message Send e-mail AIM Address MSN Messenger
clodia



Joined: 12 Jul 2007
Posts: 16

PostPosted: Mon Oct 22, 2007 6:05 pm    Post subject: Reply with quote

Thanks for the reply.

I did not know that paging is the exact keyword for showing records in multi pages. I did find a lot of examples with that keyword.

Thanks,

Clodia
Back to top
View user's profile Send private message
Rupom



Joined: 12 Jun 2005
Posts: 15
Location: Dhaka, Bangladesh

PostPosted: Thu Oct 25, 2007 3:16 pm    Post subject: Reply with quote

If you are fetching records from database, then you can use LIMIT in your query string. For example, when you want 3 records per page and your DB table has 20, you can use something like:

$records = 20;
$per_page = 3;
$total_pages = ceil($records/$per_page);

Now you know $total_pages. So you can create pagination links as following:

for($page = 1; $page <= $total_pages; $page++)
{
echo "- <a href='example.php?current_page=$page'>Page $page</a> -";
}

Upon clicking on any of the page links use this code:

$current_page = 1; //by default 1

if(is_numeric($_GET['current_page']))
{
$current_page = $_GET['current_page'];
}

$record_start = ($current_page - 1) * $per_page;
$record_end = $per_page;

$query = "SELECT * FROM $table_name LIMIT $record_start, $record_end";

---------------

This is a very basic sample of pagination. I think it will help you.

Thanks.
Back to top
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger MSN Messenger
Display posts from previous:   
WeberTrivia Questions WeberTrivia Questions
 Think you are smart? Prove it!. Try your skills with these questions :
 WeberTrivia QuestionsRecursive arrays and multi-dimensional arrays are one and the same. (PHP and MySQL)
 WeberTrivia QuestionsThe \"cache_dir\" tag of the squid configuration has a default of /var/spool/squid. (Linux)

WeberTrivia Questions



PHP Code Examples
 Stream diffrent sizes of images from a single image to save disk space.
 JavaScript dropdown list menu to switch any page.
 Dump the contents of a PHP variable in html format with a recursive list of subfolders and files from a given root directory.
 PHP Dump in html format the contents of one array variable with a recursive list of the nested array variables inside.
 Link Extractor - This function is used to extract links from a given URL. This will convert relative path into absolute path and also remove PHPSESSID stuff.
 Building a Dynamic Form using Javascript and innerHTML. Add form elements in realtime without refreshing the page.
 A PHP Calendar function with CSS : add a cool calendar to any php page by just adding a calendar class based function.
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum