Jump to content

I know this is a stupid question


elentz

Recommended Posts

This is so simple but I can't get it to work.

 

I have two variables:

 

$total

$mitax

 

I want to subtract $mitax from $total to get $subtotal

 

Here is what I have:

 

$subtotal= $total - $mitax;

 

I already am outputting $mitax and the $total and the amounts are right.  For example $total= 1244.70 and $mitax = 11.70  So the answer should be 1233.00  But I get -10.7  What am I doing wrong?

 

Thanks for looking

Link to comment
https://forums.phpfreaks.com/topic/160542-i-know-this-is-a-stupid-question/
Share on other sites

$total = 1244.70;
$mitax = 11.70;

$subtotal = $total - $mitax;
echo $total.' - '.$mitax.' = '.$subtotal.'<br />';

$total = '1,244.70';
$mitax = '11.70';

$subtotal = $total - $mitax;
echo $total.' - '.$mitax.' = '.$subtotal.'<br />';

gives

1244.7 - 11.7 = 1233
1,244.70 - 11.70 = -10.7

Now go ensure that your $total and $mitax values are actual numbers and not formatted strings

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.