DADB.class.php文件的代码怎么写
问题描述
<h2>大苹果购物网</h2>
<?php session_start(); include("DADB.class.php"); $db=new DADB(); ?> <table border="1" width="100%" cellpadding="0" cellspacing="0"> <tr> <td>代号</td> <td>水果名称</td> <td>水果价格</td> <td>原产地</td> <td>货架</td> <td>库存量</td> <td></td> </tr> <?php $uid=$_SESSION["uid"]; $sql="select * from fruit"; $arr=$db->Query($sql); foreach($arr as $v) { echo"<tr> <td>{$v[0]}</td> // 从数据库调出我们所需要的内容 <td>{$v[1]}</td> <td>{$v[2]}</td> <td>{$v[3]}</td> <td>{$v[4]}</td> <td>{$v[5]}</td> <td><a href='add.php?ids={$v[0]}'>添加</a></td> //这里的购物相当于添加购物车的功能 </tr>"; } ?> <?php //这里显示的是 购物车有多少产品,和产品的总价格 $ann=array(); if(!empty($_SESSION["gwc"])) { $ann=$_SESSION["gwc"]; } $zhonglei = count($ann); $sum=0; foreach($ann as $k) { $sql1="select price from fruit where ids='{$v[0]}'"; $danjia=$db->Query($sql1); foreach($danjia as $n) { $sum=$sum + $n[0]*$k[1]; } } echo"购物车有<mark>{$zhonglei}</mark>种商品,总价格为<mark>{$sum}</mark>元"; ?> </table> <div> <a href="gouwuche.php" rel="external nofollow" rel="external nofollow" >查看购物车</a> <a href="main.php" rel="external nofollow" rel="external nofollow" >浏览商品</a> <a href="zhanghu.php" rel="external nofollow" rel="external nofollow" >查看账户</a> </div> </body>
问题解答
回答1:我也想问。。怎么写
回答2:https://m.php.cn/article/398186.html代码是在这个网址里的,可以看一下吗回答3:这个是哪个项目?或者哪个课程? 你直接发出来,样式很乱,也不知道哪个项目,无法准确回答你的问题
相关文章:
1. macos - 无法source activate python272. 运行python程序时出现“应用程序发生异常”的内存错误?3. javascript - 微信 H5 授权 返回键4. github - 求助大神啊,win10 git clone error,折腾了几天都不行,以前原本好好的,突然就这样了5. android - 如何实现QQ pad 点击右侧输入框,只顶右侧的布局,左侧布局不动6. javascript - npm run build后调用api返回index.html7. css - 关于background-position百分比的问题?8. java - 处理数据关联关系,使用数据库表外键和代码内维护相比的优缺点?9. javascript - node得到req不能得到boolean10. 小白学python的问题 关于%d和%s的区别

网公网安备