search
HomeBackend DevelopmentPHP TutorialHow to implement pagination in PHP
How to implement pagination in PHPJun 11, 2023 pm 08:09 PM
Array chunkingphp paginationLoop output

In web applications, the paging function is very necessary when displaying large amounts of data. As a popular web development language, PHP naturally provides a paging implementation method. This article will introduce how to implement paging in PHP.

1. Obtain data

Before implementing paging, you need to obtain the data to be paging. Normally, we need to get data from the database. Here we assume that we use the MySQL database and encapsulate the database connection and query methods through PDO. The following is an example query method:

function query($sql, $params = []) {
    $dsn = "mysql:host=localhost;dbname=mydatabase;charset=utf8mb4";
    $username = "myusername";
    $password = "mypassword";
    $options = [
        PDO::ATTR_EMULATE_PREPARES => false,
        PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
    ];
    try {
        $pdo = new PDO($dsn, $username, $password, $options);
        $stmt = $pdo->prepare($sql);
        $stmt->execute($params);
        return $stmt->fetchAll(PDO::FETCH_ASSOC);
    } catch (PDOException $e) {
        die("Database error: " . $e->getMessage());
    }
}

We can query data by calling this method, for example:

$result = query("SELECT * FROM mytable");

2. Calculate the total number of pages

After obtaining the data, next One step is to figure out the total number of pages. We can calculate the total number of pages through the following formula:

totalPages = ceil(totalItems / pageSize)

Among them, totalItems represents the total number of items, and pageSize represents the number of items displayed on each page.

In PHP, you can use the built-in ceil() function to round up. The example is as follows:

$totalItems = count($result);
$pageSize = 10;
$totalPages = ceil($totalItems / $pageSize);

3. Get the current page data

Next, we need Get the data to be displayed on the current page. For convenience, we can define a getPageData() function to obtain the current page data. This function needs to pass in the current page number $page and the number of entries displayed on each page $pageSize. The example is as follows:

function getPageData($data, $page, $pageSize) {
    $start = ($page - 1) * $pageSize;
    $end = $start + $pageSize;
    return array_slice($data, $start, $pageSize);
}

This function will Calculate the starting position and ending position based on the current page number, and obtain the corresponding entries from the $data array through the array_slice() function. The example is as follows:

$data = query("SELECT * FROM mytable");
$pageData = getPageData($data, 2, 10); // 获取第2页,每页显示10条数据

4. Generate paging links

Finally The first step is to generate pagination links so that users can easily turn pages. We can generate paging links through the following steps:

  1. Generate page number links based on the total number of pages;
  2. Highlight the corresponding link based on the current page number;
  3. In Add a "previous page" link in front and a "next page" link in the end.

The following is a sample code:

function getPageLinks($currentPage, $totalPages) {
    $links = [];
    for ($i = 1; $i <= $totalPages; $i++) {
        $isActive = $i == $currentPage;
        $links[] = [
            "page" => $i,
            "isActive" => $isActive,
            "url" => "?page=$i",
        ];
    }
    $prevPage = $currentPage - 1;
    $nextPage = $currentPage + 1;
    if ($prevPage >= 1) {
        array_unshift($links, [
            "page" => $prevPage,
            "isActive" => false,
            "url" => "?page=$prevPage",
        ]);
    }
    if ($nextPage <= $totalPages) {
        array_push($links, [
            "page" => $nextPage,
            "isActive" => false,
            "url" => "?page=$nextPage",
        ]);
    }
    return $links;
}

This function will generate the corresponding link array based on the current page number and the total number of pages, including the page number of each link and whether it is the current page , and the URL of the link. Add the "previous page" link in front of the link array and the "next page" link after it to get a complete paging link array.

Usage examples are as follows:

$totalPages = ceil($totalItems / $pageSize);
$pageLinks = getPageLinks($currentPage, $totalPages);

So far, we have introduced all the steps on how to implement paging in PHP. Through the above method, only some simple mathematical calculations and array operations are needed to easily implement the paging function.

The above is the detailed content of How to implement pagination in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use