Home  >  Article  >  Backend Development  >  What are the steps for php pagination

What are the steps for php pagination

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-27 11:24:113664browse

What are the steps for php pagination

Steps for PHP paging:

First, download and open the decompression package of the PHP paging class and open it as shown below:

What are the steps for php pagination

Related recommendations: "PHP Getting Started Tutorial"

Open the config.php file and deploy it as follows:

$host="数据库路径";  
$db_user="管理员账号";  
$db_pass="管理员密码";  
$db_name="数据库名称";

Please According to actual needs, configure the above 4 items, as shown below:

What are the steps for php pagination

Open the fenye.php (front-end) file, and enter $tablename (the name of the database table to be queried), $ showrow (the number of records displayed per page) is set, and the other parameters do not need to be set.

What are the steps for php pagination

After the above steps are completed, we can deploy paging where needed. The code is as follows:

<?php 
//实例化分页类并输出分页
$fenye = new page($total,$showrow,$curpage,$purl);
echo "<div class=&#39;fenye&#39;>".$fenye->myde_write()."</div>";
?>

You only need to display paging where the page needs to be Paste the above code to see the effect.

What are the steps for php pagination

Finally, let’s take a look at the effect of successful deployment, as shown below:

What are the steps for php pagination

At this point, we have completed paging The deployment is working.

The above is the detailed content of What are the steps for php pagination. 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