


Implement data paging display function based on PHP, PHP implements paging display_PHP tutorial
Implement data paging display function based on PHP, PHP realizes paging display
The example in this article shares the PHP implementation code of data paging display function for your reference, the specific content is as follows
Implementation code:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>用户列表</title> </head> <body> <?php $con = mysql_connect("localhost","root",""); mysql_query("set names utf8"); mysql_select_db("zhiye",$con); $pageSize = 1; //每页显示的数量 $rowCount = 0; //要从数据库中获取 $pageNow = 1; //当前显示第几页 //如果有pageNow就使用,没有就默认第一页。 if (!empty($_GET['pageNow'])){ $pageNow = $_GET['pageNow']; } $pageCount = 0; //表示共有多少页 $sql1 = "select count(id) from user"; $res1 = mysql_query($sql1); if($row1=mysql_fetch_row($res1)){ $rowCount = $row1[0]; } //计算共有多少页,ceil取进1 $pageCount = ceil(($rowCount/$pageSize)); //使用sql语句时,注意有些变量应取出赋值。 $pre = ($pageNow-1)*$pageSize; $sql2 = "select * from user limit $pre,$pageSize"; $res2 = mysql_query($sql2); while($row=mysql_fetch_assoc($res2)){ echo $row['user_name']."<br>"; echo $row['name']."<br>"; echo $row['email']."<br>"; echo $row['password']."<br>"; echo $row['tel']."<br>"; } for ($i=1;$i<=$pageCount;$i++){ echo "<a href='userList.php?pageNow=$i'>$i</a> "; } ?> </body> </html>
The above is the entire content of this article. I hope it can be a reference for everyone. I also hope that everyone will support Bangke Home.

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

How To Set Up Visual Studio Code (VS Code) for PHP Development
