我有循环并显示这一行
<?
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做到这一点?
谢谢