tp5开发购物商城

Tp5.1开发购物商城(本人已自学2年)

PHP计算数据库中商品总和(非联表查询)

1.首先利用client_type(注册类型),client_id(注册ID)查询出对应的产品订单
2.在common公共文件中,利用对产品表进行查询出相应的价格和购买的数量
3.计算总和
tp5开发购物商城_第1张图片

tp5开发购物商城_第2张图片

tp5开发购物商城_第3张图片

部分代码

//计算产品的合计
function productAdd($id){
     
    $productPrice = \think\Db::table('orderform')->where('product_id',$id)->value('price');
    $productBuyCount = \think\Db::table('orderform')->where('product_id',$id)->value('buy_count');
    return $productPrice*$productBuyCount;
}

效果图如下tp5开发购物商城_第4张图片

PHP学习欢迎+Q1143157804

你可能感兴趣的:(php)