I am attempting to make a sales report function for my database website, and I want to generate a profit value. Here is the method I am using:
function total_price($totals)
{
$sub = 0;
foreach ($totals as $total)
{
$sum += $total['total_saleing_price'];
$sub += $total['total_buying_price'];
$profit = $sum - $sub;
However, I get an error
UNDEFINED VARIABLE: PROFIT.
Can anyone help?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…