


Before reading this article, please make sure you have mastered some knowledge of PHP and the basics of MYSQL query operations.
As a web program, it often has to deal with countless data, such as member data and article data. If there are only a few dozen members, it is easy to handle. It can be displayed on one page. But what if If your website has thousands or even hundreds of thousands of members, if they are all opened on one page, it will be a torture for both the browser and the viewer.
I believe that every novice learning PHP will have a headache with pagination, but with Momo’s post, you will definitely pat your head and say, hey, it turns out that pagination is so simple? Indeed, please take a deep breath of fresh air now and listen carefully as Silence explains it to you bit by bit.
Suppose we want to process 1000 pieces of data and display 10 pieces on each page. In this case, it will be displayed in 100 pages. Let's first take a look at how to extract 10 pieces of information in mysql.
Select * from table limit 0,10
The above is a very simple mysql query statement. Its function is to extract 10 pieces of data from a table named table and put all The values of the fields are obtained.
The key part is in this section "limit 0,10". The 0 in it is 0 as the starting point, and the following 10 is to display 10 pieces of data, so we need to use 10 as the starting point. How to write the 20th piece of data displayed?
Maybe many people will say “limit 10,20” outright! Oh, this is wrong. The correct way to write it is "limit 10,10". The parameter after it is not the end point but the number to be extracted. Remember.
Now that you know how to extract 10 pieces of data, extracting 1,000 pieces means doing this kind of query 100 times, which means doing the following query:
Limit 0,10 Page
Limit 10,10 . Already? Yes, the first parameter increases by 10 every time the page is turned, but the second parameter remains unchanged.
That is to say, if we try to change the value of the first parameter according to the number of pages, we can display the data in pages. How about it? Is the principle very simple?
But how to change the value of the first parameter according to the number of pages? First, we need to have a page number value, which can be obtained using the GET method of the URL.
For example, index.php?page=18
I believe most of you are familiar with this thing. This kind of URL address can be found everywhere. The function of the page parameter is to pass in the number of pages to be displayed.
Let’s take a look at how it is implemented through a piece of code:
Copy code
/*
Author: silently
Date :2006-12-03
*/
$page =isset($_GET['page'])?intval($_GET['page']):1; //This sentence is to get the value of page in page=18. If page does not exist, then the number of pages is 1 .
$ num = 10; // Show 10 data per page
$ db = mysql_connect ("host", "name", "pass"); // Create a database connection
$ select = MySQL_SELECT_DB ("DB", $ DB); // Select the database you want to operate
/*
First of all, how much data we have to get in the database can judge how many pages of the specific pages, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones, specific ones. The formula is
The total number of data divided by the number of items displayed on each page, and the remainder is rounded to one.
In other words, 10/3=3.3333=4 If there is a remainder, we must round it up by one.
*/
$ Total = MySQL_NUM_ROWS (mysql_query ("Select*from Table"); // The total number of data
$ Pagenum = Ceil ($ Total/$ Num); // Get the total number of pages
//If the page number parameter passed in is greater than the total number of pages, an error message will be displayed
If($page>$pagenum || $page == 0){
Echo "Error: Can Not Found The page.";
Exit;
}
$offset=($page-1)*$num; //Get the first parameter of limit Value, if the first page is (1-1)*10=0, the second page is (2-1)*10=10.
$info=mysql_query("select * from table limit $offset,$num"); //Get the data to be displayed for the corresponding page number
While($it=mysql_fetch_array($info)) {
Echo $it['name']."
";
} 🎜>For($i=1;$i
$show=($i!=$page)?"$i ":"$i";
Echo $show." ";
}
/*Display paging information, if it is the current page, it will be displayed in bold Number, and the remaining page numbers are hyperlinks. If the current page is the third page, it will be displayed as follows
1 2 3 4 5 6
*/
?>
Isn’t it very simple? Just use your brain to make it display more personalized. Let me give you a little question: how to implement the format of "Home Page, Previous Page, Next Page, Last Page" What about paging?
OK, finish filling the water post and call it a day. ^_^
Copy code
/*
Author: Silently
Date :2006-12-03
*/
$page=isset($_GET['page'])?intval($_GET['page']):1; //This sentence is to get the value of page in page=18. If page does not exist, then page The number is 1.
$num=10; // Display 10 pieces of data per page >mysql_select_db( "cr_download"); //Select the database to be operated
/*
First of all, we need to get how much data there is in the database to determine how many pages to divide into. The specific formula is
Total Divide the database by the number of items displayed on each page, and the remainder is one.
That is to say, 10/3=3.3333=4. If there is a remainder, we must round it up by one.
*/
$result=mysql_query("select * from cr_userinfo");
$total=mysql_num_rows($result); //Query all data
$url ='test.php';//Get the URL of this page
//Calculate the page number
$pagenum=ceil($total/$num); 🎜>$page=min($pagenum,$page);//Get the home page
$prepg=$page-1;//Previous page
$nextpg=($page==$pagenum ? 0 : $page+1);//Next page
$offset=($page-1)*$num; *10=0, the second page is (2-1)*10=10.
//Start paging navigation bar code:
$pagenav="Display page ".($total?($offset+1):0)."- ".min($offset+10,$total)." records, total $total records ";
//If there is only one page, jump out Function:
if($pagenum
$pagenav.=" Homepage ";
if($prepg) $pagenav.=" Previous page "; else $pagenav.=" Previous page ";
if($nextpg) $pagenav.=" Next page "; else $pagenav.=" Next page ";
$ pagenav.=" Last page ";
//Pull down the jump list and loop through all page numbers:
$pagenav.="Go to page page , A total of $ pagenum pages ";
// If the number of pages passed in is greater than the total page number, the error message
if ($ page & gt; $ pagenum) {
Echo" error: Can Not Found The page ".$page;
Exit;
}
$info=mysql_query("select * from cr_userinfo limit $offset,$num"); //Get the corresponding page number The data to be displayed
While($it=mysql_fetch_array($info)){
Echo $it['username'];
echo "
";
} //Display Data
echo "
";
echo $pagenav;//Output paging navigation
?>
By the way, let’s dig deeper. In practical applications, paging is almost always used when it comes to lists. You can try to make a general paging function, so that this function can be called whenever paging is needed. Haha~~

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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