Jump to content

[SOLVED] adding problem


decypher

Recommended Posts

$total = 0;

if (!empty($chkfries)){
  print ("You chose Fries <br> \n");
  $total = £total + $chkfries;
} // end if

if (!empty($chksoda)){
  print ("You chose Soda <br> \n");
  $total = £total + $chksoda;
} // end if

if (!empty($chkshake)){
  print ("You chose Shake <br> \n");
  $total = £total + $chkshake;
} // end if

if (!empty($chkketchup)){
  print ("You chose Ketchup <br> \n");
  $total = £total + $chkketchup;
} // end if

print "The total cost is \$$total \n";

?>

 

It now shows the correct amount when the checkbox is ticked...However when it goes to make the total cost...It only adds the last figure to the original figure

 

ChkFries: 1.00

ChkSoda: .85

ChkShake:

ChkKethcup:

 

You chose Fries

You chose Soda

The total cost is $0.85

Link to comment
https://forums.phpfreaks.com/topic/60665-solved-adding-problem/
Share on other sites

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.