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

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.