Detailed explanation of simple digital paging function in PHP
This article mainly introduces the simple implementation of digital paging function in PHP, and analyzes the mathematical operations and string manipulation related skills of PHP digital paging in the form of examples. Friends in need can refer to the following
The details are as follows:
<?php header ( 'Content-Type: text/html; charset=utf-8' ); //分页 $page=$_GET['page']; $allcount= 100; $page_size =10; $page_show =5; $page_count = ceil($allcount/$page_size); if($page <= 1 || $page == '') $page = 1; if($page >= $page_count) $page = $page_count; $pre_page = ($page == 1)? 1 : $page - 1; $next_page= ($page == $page_count)? $page_count : $page + 1 ; $pagenav .= "第 $page/$page_count 页 共 $allcount 条记录 "; $pagenav .= "<a href='?page=1'>首页</a> "; $pagenav .= "<a href='?page=$pre_page'>前一页</a> "; //当前显示的开始 $page_show_start = (ceil($page/$page_show)-1)*$page_show; //显示分页 $page_show_str = ''; if($page_show>$page_count){ $page_show = $page_count; } for($j=1;$j<=$page_show;$j++){ $page_show_now = $page_show_start+$j; if($page==$page_show_now){ $page_show_str .= "<a href='?page=$page_show_now'><strong>$page_show_now</strong></a> "; }else{ $page_show_str .= "<a href='?page=$page_show_now'>$page_show_now</a> "; } } $pagenav.=$page_show_str; $pagenav .= "<a href='?page=$next_page'>后一页</a> "; $pagenav .= "<a href='?page=$page_count'>末页</a>"; echo '<p class="page">'.$pagenav.'</p>' ; ?>
The running effect is shown in the figure below:
Summary: Above That’s the entire content of this article, I hope it will be helpful to everyone’s study.
Related recommendations:
PHP search query function implementation
PHP precise calculation function
phpImplement the method of getting all dates between the start and end dates
The above is the detailed content of Detailed explanation of simple digital paging function in PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
