search
HomeBackend DevelopmentPHP TutorialPHP paging principle and PHP paging code comprehensive examples

  1. /**
  2. * PHP pagination code
  3. **/
  4. /**
  5. * Link to database
  6. * bbs.it-home.org
  7. * @param string $strHost database server host address
  8. * @param string $strAccount database account
  9. * @param string $strPassword database password
  10. * @return resource
  11. **/
  12. function mysqlConnect($strHost,$strAccount,$strPassword,$strDBname)
  13. {
  14. $strHost=trim ($strHost);
  15. $strAcount=trim($strAccount);
  16. $strPassword=trim($strPassword);
  17. $resLink=mysql_connect($strHost,$strAccount,$strPassword);
  18. if(!$resLink)
  19. {
  20. return false;
  21. }
  22. else
  23. { //set names ... set according to the encoding of the database
  24. mysql_query('set names utf8',$resLink);
  25. $isValidate=mysql_select_db($strDBname,$resLink);
  26. if($isValidate)
  27. {
  28. return $resLink;
  29. }
  30. else
  31. {
  32. return false;
  33. }
  34. }
  35. }
  36. /**
  37. *Accept the current page number of paging and calculate the corresponding parameter value
  38. *Include: start page number $arrParameter['start']
  39. * End page number $arrParameter['end']
  40. * Total number of records $arrParameter['all' ]
  41. * Number of records displayed on each page $arrParameter['nums']
  42. * Number of links displayed on the page $arrParameter['links']
  43. * SQL statement to be queried $arrParameter['sql']
  44. * Type of paging bar $arrParameter['tag']
  45. *
  46. int $intPage Current page number value
  47. int $intNums Number of records displayed on each page
  48. int $intLinks Number of links displayed on the page
  49. string $strTablename Display data table in pages
  50. resource $resLink Data connection handle
  51. array
  52. **/
  53. function calculateParamester($intPage,$intNums,$intLinks, $strTablename,$resLink){
  54. $intPage=(int)$intPage;
  55. $intNums=(int)$intNums;
  56. $intLinks=(int)$intLinks;
  57. //When the number of displayed links is not an odd number, adjust it to an odd number.
  58. if($intLinks % 2 == 0){
  59. $intLinks--;
  60. }
  61. //Adjust to 10 when the number of records displayed on each page is not greater than 0
  62. if($intNums $intNums =10;
  63. }
  64. //Calculate the total number of pages
  65. $strSql1="select count(*) as num from `{$strTablename}`";
  66. $resObj1=mysql_query($strSql1,$resLink);
  67. $arrObj1 =mysql_fetch_assoc($resObj1);
  68. $intAllRecords=$arrObj1['num'];
  69. $intAllPage=ceil($intAllRecords/$intNums);
  70. //The first parameter of the sql statement limit keyword
  71. $intOffset=( $intPage-1)*$intNums;
  72. //Only display the previous page and next page, that is, the number of links displayed is not greater than 0
  73. if($intLinks $strSql2="select * from ` {$strTablename}` limit {$intOffset},{$intNums}";
  74. $arrParameter['start']=null;
  75. $arrParameter['end']=null;
  76. $arrParameter['page']=$intPage ;
  77. $arrParameter['nums']=$intNums;
  78. $arrParameter['links']=null;
  79. $arrParameter['all']=$intAllPage;
  80. $arrParameter['sql']=$strSql2;
  81. $ arrParameter['tag']=1;
  82. //When the paging barcode is displayed, that is, the number of links displayed is greater than 0
  83. }else{
  84. //When the total records are greater than 0
  85. if($intAllPage > 0){
  86. //Determine the value of the current page number
  87. if($intPage $intPage=1;
  88. }
  89. if($intPage >= $intAllPage){
  90. $intPage=$intAllPage;
  91. }
  92. $ intHalfLinks=floor($intLinks/2);
  93. //Calculate the value of the start page number
  94. $intStartPage=$intPage-$intHalfLinks;
  95. if($intStartPage $intStartPage=1;
  96. }
  97. if( ($intAllPage-$intPage) //$intStartPage=$intPage-$intHalfLinks-($intHalfLinks-($intAllPage-$intPage));
  98. //$intStartPage=$intPage-$intHalfLinks- $intHalfLinks+$intAllPage-$intPage;
  99. $intStartPage=$intAllPage-2*$intHalfLinks;
  100. }
  101. //Calculate the value of the end page number
  102. $intEndPage=$intPage+$intHalfLinks;
  103. if($intEndPage "select * from `{$strTablename}` limit {$intOffset},{$intNums}";
  104. $arrParameter['start']=$intStartPage;
  105. $arrParameter['end']=$intEndPage;
  106. $arrParameter[ 'page']=$intPage;
  107. $arrParameter['nums']=$intNums;
  108. $arrParameter['links']=$intLinks;
  109. $arrParameter['all']=$intAllPage;
  110. $arrParameter['sql ']=$strSql2;
  111. $arrParameter['tag']=2;
  112. //When the total records are equal to 0
  113. }else{
  114. $arrParameter['start']=null;
  115. $arrParameter['end' ]=null;
  116. $arrParameter['page']=null;
  117. $arrParameter['nums']=null;
  118. $arrParameter['links']=null;
  119. $arrParameter['all']=null;
  120. $ arrParameter['sql']=null;
  121. $arrParameter['tag']=3;
  122. }
  123. }
  124. return $arrParameter;
  125. }
  126. /**
  127. * Create paging bar
  128. *
  129. * @param int $intPage The currently displayed page number value
  130. * @param int $intStartPage The starting page number
  131. * @param int $intEndPage The ending page number
  132. * @param int $intAllRecords The total number of records
  133. * @param int $intTag paging bar type tag
  134. * @return string
  135. **/
  136. function createPagingItem($intPage,$intStartPage,$intEndPage,$intAllPage,$intTag){
  137. $strPageItem='';
  138. //Only display the previous page and the next page. The number of links displayed is not greater than 0
  139. if($intTag == 1){
  140. if($intAllPage $strPageItem.='Homepage  Last Page';
  141. }else{
  142. if( $intPage == 1){
  143. $strPageItem.="Home  Previous page";
  144. $strPageItem.="  ";
  145. }else{
  146. $strPageItem.="Homepage";
  147. $strPageItem.="  ";
  148. $strPageItem.="Previous page";
  149. $strPageItem.="  ";
  150. }
  151. if($intPage == $intAllPage){
  152. $strPageItem.="Next page   Last page";
  153. }else{
  154. $strPageItem.="Next page";
  155. $strPageItem.="  ";
  156. $strPageItem.="Last page";
  157. }
  158. }
  159. }
  160. //When displaying paging barcode, the number of links displayed is greater than 0
  161. if($intTag == 2){
  162. if($intPage == 1){
  163. $strPageItem.="Homepage   Previous page";
  164. $strPageItem.="  ";
  165. }else{
  166. $strPageItem.="Homepage";
  167. $ strPageItem.="  ";
  168. $strPageItem.="Previous page";
  169. $ strPageItem.="  ";
  170. }
  171. for($i=$intStartPage;$i if($i == $intPage){
  172. $strPageItem.=$i ;
  173. }else{
  174. $strPageItem.="[".$i."]";
  175. }
  176. $strPageItem.="   ";
  177. }
  178. if($intPage == $intAllPage){
  179. $strPageItem.="Next page  Last page";
  180. }else{
  181. $strPageItem.="Next page";
  182. $strPageItem.="  ";
  183. $strPageItem.="Last page";
  184. }
  185. }
  186. //When the total records are equal to 0
  187. if($intTag == 3){
  188. $strPageItem.='Home page =mysql_query($strSql,$resLink);
  189. $arrObj=array();
  190. $strOutPutData='';
  191. $arrFieldsCode=array_keys($arrFields);
  192. while(@$arrRow=mysql_fetch_assoc($resObj)){
  193. $arrObj[]=$arrRow;
  194. }
  195. $strOutPutData.="";
  196. $strOutPutData.='
  197. ';
  198. foreach($arrFieldsCode as $strVal){
  199. $strOutPutData.="
  200. ";
  201. }
  202. $strOutPutData.="
  203. ";
  204. foreach($arrObj as $arrVal){
  205. $strOutPutData.="
  206. ";
  207. foreach($arrFieldsCode as $strVal){
  208. $strOutPutData.="
  209. ";
  210. }
  211. $strOutPutData.="
  212. ";
  213. }
  214. $strOutPutData.="
  215. ".$arrFields[trim($strVal)]."
    ".$arrVal[trim($strVal)]."
    ";
  216. return $strOutPutData;
  217. }
  218. // Connect and select the database
  219. // Note: You should modify the database account and password as well as the database name
  220. $resLink=mysqlConnect('localhost','root','root','ztlibrary');
  221. // Find out Note on paging parameters: You should modify the data table name
  222. $arrParameter=calculateParamester(@$_GET['page']?$_GET['page']:1,
  223. 10,5,'book_info',$resLink);
  224. / /The data to be displayed is composed of the field name of the table and its key value. The Chinese interpretation of the field name is its element value
  225. //Note: You should modify the following array according to your data table
  226. $arrFields=array('Id_code' =>'Book_name'=>'Book name',
  227. 'Book_ISBN'=>'ISBN','Contribute_man'=>'Source','Issue_time'=>'Publication time' ,'Storing_time'=>'Storing time');
  228. ?>
  229. li>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  230. php paging demonstration--www.yuju100.com
  231. < ;div>
  232. //Output paging data
  233. echo outPutData($arrParameter['sql'],$arrFields,$resLink);
  234. ?>
  • < ;?php
  • //Display paging bar
  • echo createPagingItem($arrParameter['page'],$arrParameter['start'],$arrParameter['end'],
  • $arrParameter['all'],$arrParameter[' tag']);
  • ?>
  • Copy code


  • 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
    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

    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.

    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' =>

    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

    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

    Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

    Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

    PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

    PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

    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

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

    Hot Tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    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),

    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.