今天讲了php里面经常用到的分页查询,之前只是讲了分页,就是将一个数据库里面的内容分页显示,并且可以在页面底部出现很多按钮,例如:“首页”;“末页”;“上一页”;“下一页”;等等很多;今天在分页的基础上增加了查询条件,并且让页面底部的分页信息会根据查询条件查询相互来的数据随之改变。下面给大家看看代码部分以及效果图:
1、封装类文件:
<?php class DBDA { public $host = "localhost"; public $uid = "root"; public $pwd = "root"; public $dbname = "test"; public function Query($sql,$type=1) { $db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname); $result = $db->query($sql); if($type=="1") { return $result->fetch_all(); }else { return $result; } } }
2.查询页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>分页查询</title> </head> <body> <?php include("DBDA.class.php"); $db = new DBDA(); include "page.class.php"; $tj1 = " 1=1 "; $area = ""; if(!empty($_GET["area"])) { $area = $_GET["area"]; $tj1 = "areaname like '%{$area}%'"; } ?> <h1>中国省市区</h1> <form action="test.php" method="get"> <div>地区名称:<input type="text" name="area" value="<?php echo $area; ?>" /> <input /> </div> </form> </body> </html>
就是两个简单的页面,如果不加条件显示结果如下:
如果加入条件,例如:“河”;显示结果如下:
注意看底部的信息,显示的是所有关于“河”的信息的分页信息,这就是分页查询的作用!只需要在原来的分页的基础上加上查询条件就可以了。