Paginate MySQL query results using PHP

A guide on how to paginate MySQL query results using PHP. This PHP code helps split data from MySQL into separate pages for better presentation.

<?php
// Database connection
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database";
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Set the number of results per page
$results_per_page = 10;

// Determine the current page number
if (isset($_GET['page'])) {
    $page = $_GET['page'];
} else {
    $page = 1;
}

// Determine the starting point for results in the database
$start_from = ($page - 1) * $results_per_page;

// Query the database with a limit on results for each page
$sql = "SELECT * FROM table_name LIMIT $start_from, $results_per_page";
$result = $conn->query($sql);

// Display results
if ($result->num_rows > 0) {
    while($row = $result->fetch_assoc()) {
        echo "ID: " . $row["id"]. " - Name: " . $row["name"]. "<br>";
    }
} else {
    echo "No data found.";
}

// Count total number of results in the database
$sql_total = "SELECT COUNT(id) AS total FROM table_name";
$result_total = $conn->query($sql_total);
$row_total = $result_total->fetch_assoc();
$total_pages = ceil($row_total["total"] / $results_per_page);

// Create links to other pages
for ($i = 1; $i <= $total_pages; $i++) {
    echo "<a href='pagination.php?page=" . $i . "'>" . $i . "</a> ";
}

// Close the connection
$conn->close();
?>

Detailed explanation:

  1. Database connection:

    • $conn = new mysqli($servername, $username, $password, $dbname): Connect to the MySQL database.
  2. Set the number of results per page:

    • $results_per_page = 10: Sets the number of records to display on each page.
  3. Determine the current page number:

    • $_GET['page']: Retrieves the page number from the URL. If not provided, the default is page 1.
  4. Determine the starting point for results:

    • $start_from = ($page - 1) * $results_per_page: Calculates the starting record for the current page.
  5. Query the database with a result limit:

    • LIMIT $start_from, $results_per_page: Queries data from the starting point with a limit on the number of results to display per page.
  6. Count total number of results:

    • SELECT COUNT(id) AS total FROM table_name: Counts the total number of records in the table to determine how many pages are needed.
  7. Create links to other pages:

    • for ($i = 1; $i <= $total_pages; $i++): Generates links to other pages based on the total number of pages.
  8. Close the connection:

    • $conn->close(): Closes the connection to the database.

PHP Version:

This code can run on PHP versions from 5.0 and above and requires the MySQLi extension.



Related

Example of Factory Pattern in PHP

A guide on the Factory Pattern in PHP with a concrete example, explaining how to implement and use this design pattern in object-oriented programming.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.
Update multiple columns in MySQL using PHP

A guide on how to update multiple columns in MySQL using PHP. This PHP code uses the UPDATE statement to change multiple column values in a MySQL database.
How to extract numbers from a string in PHP

This article demonstrates how to extract numbers from a string in PHP using various methods such as regex (regular expressions), built-in functions like `preg_match_all`, `filter_var`, and manual approaches.
JSON Web Token (JWT) Authentication with PHP

A guide on using JSON Web Token (JWT) for authentication in PHP. Using JWT ensures secure transmission of information between client and server and is easy to implement in web applications.
How to use the str_pad() function in PHP

A detailed guide on how to use the `str_pad()` function in PHP to pad strings with different characters to a specified length. The article introduces various common uses of this function in programming.
Comprehensive guide to concatenating strings in PHP

A detailed guide on all the ways to concatenate strings in PHP, including the concatenation operator, string functions, and other methods.
Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
How to call a PHP function from a string stored in a variable

A guide on how to call a PHP function from a string stored in a variable using PHP’s dynamic function call feature. This article will show you how to do it with illustrative examples.
Convert accented Unicode characters to non-accented in PHP

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using PHP. This PHP code efficiently handles Vietnamese text processing.

main.add_cart_success