我有循环并显示此行
<?
if ($objResult["cashier_trans_Type"]=="out" ||
$objResult["cashier_trans_Type"]=="debit to customer" ||
$objResult["cashier_trans_Type"]=="debit") {
echo "0.00";
} else {
echo $Dofaa=number_format($objResult["cashier_trans_Value"],2);
}
?>
现在我想使用while循环来为所有列做总和:$Dofaa
我怎么能用php做到这一点?
感谢
答案 0 :(得分:1)
你不需要新的循环。只需添加每个else
循环的总计。
<?
$Dofaa_total = 0; // create a total variable
...
if ($objResult["cashier_trans_Type"]=="out" ||
$objResult["cashier_trans_Type"]=="debit to customer" ||
$objResult["cashier_trans_Type"]=="debit") {
echo "0.00";
} else {
echo $Dofaa=number_format($objResult["cashier_trans_Value"],2);
$Dofaa_total += $Dofaa; // add to the total variable
}
...
echo $Dofaa_total; // echo the total variable
?>