


A preliminary study on PHP paging. A simple implementation of the simplest PHP paging code_php example
Jul 06, 2016 pm 01:32 PMPHP paging code must be used in various program development, and it is a must-select in website development.
To write paging code, you must first understand the SQL query statement: select * from goods limit 2,7. The core of the PHP paging code revolves around this statement. The SQL statement explains: Query the goods data table and retrieve 7 pieces of data starting from the 2nd piece of data. In the paging code, 7 represents how many pieces of content are displayed on each page, and 2 represents the number of page turns calculated by a formula. By replacing the value of "2" with different parameters, you can filter out different data.
index.php:
include 'conn.php'; //引入數(shù)據(jù)庫操作類 $conn=new conn(); //實(shí)例化數(shù)據(jù)庫操作類 $total=$conn->getOne('select count(*) as total from goods'); $total=$total['total']; //goods表數(shù)據(jù)總數(shù)據(jù)條數(shù) $num=6; //每頁顯示條數(shù) $totalpage=ceil($total/$num); //計(jì)算頁數(shù) if(isset($_GET['page']) && $_GET['page']<=$totalpage){//這里做了一個(gè)判斷,若get到數(shù)據(jù)并且該數(shù)據(jù)小于總頁數(shù)情況下才付給當(dāng)前頁參數(shù),否則跳轉(zhuǎn)到第一頁 $thispage=$_GET['page']; }else{ $thispage=1; } <BR>//注意下面sql語句中紅色部分,通過計(jì)算來確定從第幾條數(shù)據(jù)開始取出,當(dāng)前頁數(shù)減去1后再乘以每頁顯示數(shù)據(jù)條數(shù) $sql='select goods_id,goods_name,shop_price from goods order by goods_id limit '.<SPAN style="COLOR: #ff0000">($thispage-1)*$num</SPAN>.','.$num.''; $data=$conn->getAll($sql); foreach($data as $k=>$v){ echo '<li>'.$v['goods_id'].'、'.$v['goods_name'].'---¥'.$v['shop_price'].'</li>'; } <BR>//顯示分頁數(shù)字列表 for($i=1;$i<=$totalpage;$i++){ echo '<a href="?page='.$i.'">'.$i.'</a> '; }
The above code implements the simplest PHP paging effect:
Only click on the page turning number to display different page turning data. It can be further improved on this basis. As long as the basic principles are understood, subsequent work will be easier to develop.
conn.php code:
/* *連接數(shù)據(jù)庫 進(jìn)行相關(guān)查詢操作 */ class conn{ public function __construct(){ include_once('config.php'); try{ $this->pdo = new PDO('mysql:host=localhost;dbname=test', 'root', '123456'); $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $this->pdo->exec('set names utf8'); }catch(PDOException $e){ echo '數(shù)據(jù)庫連接失敗:'.$e->getMessage(); exit(); } } //獲取一行數(shù)據(jù) public function getOne($sql){ $rs=$this->pdo->query($sql)->fetch(PDO::FETCH_ASSOC); return $rs; } //獲取多行數(shù)據(jù)結(jié)果 public function getAll($sql){ $rs=$this->pdo->query($sql)->fetchall(PDO::FETCH_ASSOC); return $rs; } }
The function of conn.php is to complete the database connection and implement the data extraction operation method. Here I am using pdo. The code can be organized according to everyone's habits.
config.php:
* *配置數(shù)據(jù)庫信息 */ $cfg_dbhost='localhost'; $cfg_dbname='test'; $cfg_dbuser='root'; $cfg_dbpw='123456';
This example is only to illustrate the basic paging principle, and there are still many modifications before it can be used in practice.
The above is the initial exploration of PHP paging brought to you by the editor. A simple implementation of the simplest PHP paging code. I hope you like it~
If you want to know more game activities and game strategies, please continue to pay attention to this site. The editor of this site will bring you the best, most fun, and freshest game information as soon as possible. More exciting content, all in the php game channel!

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

ToversionaPHP-basedAPIeffectively,useURL-basedversioningforclarityandeaseofrouting,separateversionedcodetoavoidconflicts,deprecateoldversionswithclearcommunication,andconsidercustomheadersonlywhennecessary.StartbyplacingtheversionintheURL(e.g.,/api/v

TosecurelyhandleauthenticationandauthorizationinPHP,followthesesteps:1.Alwayshashpasswordswithpassword_hash()andverifyusingpassword_verify(),usepreparedstatementstopreventSQLinjection,andstoreuserdatain$_SESSIONafterlogin.2.Implementrole-basedaccessc

PHPdoesnothaveabuilt-inWeakMapbutoffersWeakReferenceforsimilarfunctionality.1.WeakReferenceallowsholdingreferenceswithoutpreventinggarbagecollection.2.Itisusefulforcaching,eventlisteners,andmetadatawithoutaffectingobjectlifecycles.3.YoucansimulateaWe

Proceduralandobject-orientedprogramming(OOP)inPHPdiffersignificantlyinstructure,reusability,anddatahandling.1.Proceduralprogrammingusesfunctionsorganizedsequentially,suitableforsmallscripts.2.OOPorganizescodeintoclassesandobjects,modelingreal-worlden

To safely handle file uploads in PHP, the core is to verify file types, rename files, and restrict permissions. 1. Use finfo_file() to check the real MIME type, and only specific types such as image/jpeg are allowed; 2. Use uniqid() to generate random file names and store them in non-Web root directory; 3. Limit file size through php.ini and HTML forms, and set directory permissions to 0755; 4. Use ClamAV to scan malware to enhance security. These steps effectively prevent security vulnerabilities and ensure that the file upload process is safe and reliable.

In PHP, the main difference between == and == is the strictness of type checking. ==Type conversion will be performed before comparison, for example, 5=="5" returns true, and ===Request that the value and type are the same before true will be returned, for example, 5==="5" returns false. In usage scenarios, === is more secure and should be used first, and == is only used when type conversion is required.

Yes, PHP can interact with NoSQL databases like MongoDB and Redis through specific extensions or libraries. First, use the MongoDBPHP driver (installed through PECL or Composer) to create client instances and operate databases and collections, supporting insertion, query, aggregation and other operations; second, use the Predis library or phpredis extension to connect to Redis, perform key-value settings and acquisitions, and recommend phpredis for high-performance scenarios, while Predis is convenient for rapid deployment; both are suitable for production environments and are well-documented.

The methods of using basic mathematical operations in PHP are as follows: 1. Addition signs support integers and floating-point numbers, and can also be used for variables. String numbers will be automatically converted but not recommended to dependencies; 2. Subtraction signs use - signs, variables are the same, and type conversion is also applicable; 3. Multiplication signs use * signs, which are suitable for numbers and similar strings; 4. Division uses / signs, which need to avoid dividing by zero, and note that the result may be floating-point numbers; 5. Taking the modulus signs can be used to judge odd and even numbers, and when processing negative numbers, the remainder signs are consistent with the dividend. The key to using these operators correctly is to ensure that the data types are clear and the boundary situation is handled well.
