Jump to content

Addition And Subtraction Issue


dreampho

Recommended Posts

Hi. I have a simple math line, and I cant work out why its subtracting the $extra_cost variable, where as it should be adding it?

 

<?php $deposit = substr("300"); $full_price = "1000"; $extra_cost = "10"; $remaining_balance = $deposit - $full_price + $extra_cost; $remaining_balance = substr("$remaining_balance",1); ?>

 

Thank you

Link to comment
https://forums.phpfreaks.com/topic/270503-addition-and-subtraction-issue/
Share on other sites

Are you looking to have a negative number return? If not, you may want to change the order of your equation.

 

Here it is cleaned up a bit. Also, per Andy123, you really don't need the substring calls, and you should have your numbers as numbers, without quotes:

 

$deposit = 300;
$full_price = 1000;
$extra_cost = 10;
$remaining_balance = ($full_price - $deposit) + $extra_cost;
echo $remaining_balance;

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.