duanmaduan1848 2011-11-27 18:03
浏览 95
已采纳

在PHP中的总和

this may sound lame but i am stuck up with summing up the values retrieved from mysql. i want to sum up the grand total of the sales invoice items that is retrieved from mysql database. following is the code for sub total for each line which is fine.

while($row = mysql_fetch_array($qry)){  
echo $row['b'] * $row['c'];
}

'b' is the quantity and 'c' is the price.all these values are retrieved from mysql and the no of rows is variable and all this is inside the while loop. Now outside of the while loop, the last row, i want the grand total. can somebody point me in the right direction. i tried

echo SUM($row['b'] * $row['c']);

but this doesn't work and gives an error. i am sure i am doing it wrongly.

  • 写回答

2条回答 默认 最新

  • dongluo8303 2011-11-27 18:05
    关注
    $total = 0;
    while($row = mysql_fetch_array($qry))
    {  
      echo $row['b'] * $row['c'];
      $total += ($row['b'] * $row['c']);
    }
    
    // at the end, $total = grand total
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 图像信息库的建立与识别
  • ¥15 韩国网站购物,KG支付的支付回调如何解决
  • ¥15 workstation导入ovf文件,报错,怎么解决呢?
  • ¥15 关于#c语言#的问题:构成555单稳态触发器,采用LED指示灯延时时间,对延时时间进行测量并显示(如楼道声控延时灯)需要Proteus仿真图和C语言代码
  • ¥15 workstation加载centos进入emergency模式,查看日志报警如图,怎样解决呢?
  • ¥50 如何用单纯形法寻优不能精准找不到给定的参数,并联机构误差识别,给定误差有7个?matlab
  • ¥15 workstation加载centos进入emergency模式,查看日志报警如图,没有XFS,怎样解决呢?
  • ¥15 应用商店如何检测在架应用内容是否违规?
  • ¥15 Ubuntu系统配置PX4
  • ¥50 nw.js调用activex