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
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

Link to comment
Share on other sites

Well, Mark had the right idea, I had BOTh of those numbers formatted.  Once I removed that it woked out.  But at some point I need to format the numbers.

 

Format it after all calculations are made or just before display.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.