前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >利用PHP访问数据库_实现分页功能与多条件查询功能的示例

利用PHP访问数据库_实现分页功能与多条件查询功能的示例

作者头像
用户2323866
修改2021-07-06 10:55:23
8360
修改2021-07-06 10:55:23
举报
文章被收录于专栏:技术派

1.实现分页功能

<body> <table width="100%" border="1"> <thead> <tr> <th>代号</th> <th>名称</th> <th>价格</th> </tr> </thead> <tbody> <?php require_once "./DBDA.class.php";  //加载数据库访问类的封装文件 require_once "page.class.php";  //加载分页类的封装文件 $db = new DBDA(); $sql = "select count(*) from car"; $arr = $db->query($szts);

$page = new Page($arr0,5);  //查看总数据,并每页显示的行数据 $sql = "select * from car".$page->limit;  //拼接每页显示的数据 $arr = $db->query($sql); foreach($arr as $v){ echo "<tr> <td>{$v[0]}</td> <td>{$v[1]}</td> <td>{$v[2]}</td> </tr>"; } ?> </tbody> </table>

<div style="margin-top:20px"> <?php echo $page->fpage();  //调用分页类的方法 ?> </div> </body>

2.实现多条件查询功能

<body> <?php require_once "./DBDA.class.php"; require_once "page.class.php"; $db = new DBDA();

//做一个恒成立的条件 $tj = " 1=1 "; $tj2 = " 1=1 "; $name = " "; $brand = " "; //当提交的数据不为空,需要改条件 if(!empty($_GET["name"])){ $name = $_GET["name"]; $tj = " name like '%{$name}%' ";  //使用模糊查询查询关键信息 } if(!empty($_GET["brand"])){ $brand = $_GET["brand"]; $tj2 = " brand = '{$brand}' "; }

?> <table width="100%" border="1"> <form action="test.php" method="get"> <input type="text" name="name" placeholder="请输入名称" value="<?php echo $name ?>" style="max-width:200px; float:left"> <input type="text" name="brand" placeholder="请输入系列" value="<?php echo $brand ?>" style="max-width:200px; float:left"> <button type="submit" style="float:left; margin-left:10px">查询</button> </form> <thead> <tr> <th>代号</th> <th>名称</th> <th>系列</th> <th>时间</th> <th>价格</th> </tr> </thead> <tbody> <?php $zts = "select count(*) from car where {$tj} and {$tj2}";  //多条件查询数据总数 $ats = $db->query($arr); $page = new Page($ats0,2);

$sql = "select * from car where {/**【当下浏览的服务器和开发工具是哪些】**/$tj} and {$tj2} ".$page->limit; $arr = $db->query($sql); foreach($arr as $v){ //给查询的关键字加字体颜色 $n = str_replace($name,"<span style='/【尽量使用一键安装脚本,要么自己做,要么网上下载或使用我博客的,把时间用在更多的地方,少做重复劳动的事情】/color:red'>{$name}&lt;/span&gt;",$v[1]); echo "<tr> <td>{$v[0]}</td> <td>{$n}</td> <td>{$v[2]}</td> <td>{$v[3]}</td> <td>{$v[7]}</td> </tr>"; } ?> </tbody> </table> <div> <?php echo $page->fpage(); ?> </div> </body>

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
云服务器
云服务器(Cloud Virtual Machine,CVM)提供安全可靠的弹性计算服务。 您可以实时扩展或缩减计算资源,适应变化的业务需求,并只需按实际使用的资源计费。使用 CVM 可以极大降低您的软硬件采购成本,简化 IT 运维工作。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档