Jump to content

Need help from a PHP accountant LOL


Recommended Posts

Whats wrong with this arithmetic code?

 

$sizestotal = $content['sizes'] * $row['price'];
$sizeltotal = $content['sizem'] * $row['price'];
$sizeltotal = $content['sizel'] * $row['price'];
$sizeltotal = $content['sizexl'] * $row['price'];
$idtotal = $sizestotal + $sizemtotal + $sizeltotal + $sizexltotal;
$total += $idtotal;

Link to comment
https://forums.phpfreaks.com/topic/248737-need-help-from-a-php-accountant-lol/
Share on other sites

You keep overwriting the same variable ($sizeltotal).

 

Please Note: this is a very easy thing to find through debugging using print statements ... i.e. echo each of the values you are totaling up and see what they actually are.  Instead of coming here for us to debug it for you.

 

~juddster

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.