This might be a bit of a nube question but here goes.
I have 2 variables I'm multipying
$totalCommission = $numSales * $commissions;
This runs in a foreach loop so let's say I have 2 sales at 9.25 which adds up to $18.50, why is the zero stripped off when I output $totalCommission?
I have 2 variables I'm multipying
$totalCommission = $numSales * $commissions;
This runs in a foreach loop so let's say I have 2 sales at 9.25 which adds up to $18.50, why is the zero stripped off when I output $totalCommission?