Reputation: 95
I am trying to multiply these two ints together.
$value = calculateCateringCosts($i, $db);//int 1
echo "<td>$value * $partySize</td>";
However this is the result I get: 20 * 150
Upvotes: 0
Views: 44
Reputation: 1729
$value = calculateCateringCosts($i, $db);//int 1
echo "<td>".($value * $partySize)."</td>";
Upvotes: 3