Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7020729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:21:23+00:00 2026-05-27T23:21:23+00:00

I am displaying some records from the database. Currently I am displaying the top

  • 0

I am displaying some records from the database. Currently I am displaying the top twenty records but I want to show all records with twenty records per page.

How will I use the paging in php to display all records?’

Any Idea about this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T23:21:24+00:00Added an answer on May 27, 2026 at 11:21 pm

    Something like this might work:

    $posts_per_page = 10;
    $page = isset($_GET['page']) ? intval($_GET['page']) : 0;
    $query = sprintf("SELECT * FROM <table> LIMIT %d, %d", 
                      $page * $post_per_page, 
                      $posts_per_page);
    $result = mysql_query($query);
    

    The above query will select 10 records with a offset based on the current page.
    You will also have to get the total number of pages based on the $posts_per_page:

    $query = "SELECT COUNT(*) c FROM <table>";
    

    You will have to keep track of the total number of posts divided with $posts_per_page and also the current page, then you can display a prev and next link:

    if ($current_page > 0) {
       echo '<a href="index.php?page=' . ($current_page - 1) . '>prev</a>';
    } 
    if ($current_page < $max_pages - 1) {
       echo '<a href="index.php?page=' . ($current_page + 1) . '>next</a>';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am displaying some records from mySQL from php and one of the fields
First, I do not want to use Lucene as a database, per se, but
I have a PHP-generated page which is displaying some data about a set of
I have ASP.NET page with an iframe on it for displaying some pdf reports
I have HTML table structure displaying some records. There is an info (i.e., small
I have some code which pulls records out of the database and I'm then
I have a ListBox displaying some items, and in certain modes I stamp a
I am displaying some text in a column inside an SPGridView. The text happens
I've got a simple calendar displaying some events, that's not quite giving me the
I have a large data.frame displaying some weird properties when plotted. I'd like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.