decypher Posted July 18, 2007 Share Posted July 18, 2007 $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 More sharing options...
trq Posted July 18, 2007 Share Posted July 18, 2007 All these... $total = £total + $chkfries; Should be... $total += $chkfries; The pound sign means nothing to php, it should be generating errors. Link to comment https://forums.phpfreaks.com/topic/60665-solved-adding-problem/#findComment-301808 Share on other sites More sharing options...
decypher Posted July 18, 2007 Author Share Posted July 18, 2007 ahh ok and they're dollar signs not pound signs Link to comment https://forums.phpfreaks.com/topic/60665-solved-adding-problem/#findComment-301812 Share on other sites More sharing options...
trq Posted July 18, 2007 Share Posted July 18, 2007 they're dollar signs not pound signs Not where I'm from. Link to comment https://forums.phpfreaks.com/topic/60665-solved-adding-problem/#findComment-301814 Share on other sites More sharing options...
decypher Posted July 18, 2007 Author Share Posted July 18, 2007 okk apart from them...must of been pressin 3 instead of 4 without noticin =[ Link to comment https://forums.phpfreaks.com/topic/60665-solved-adding-problem/#findComment-301815 Share on other sites More sharing options...
decypher Posted July 18, 2007 Author Share Posted July 18, 2007 all working now Thanks alot Link to comment https://forums.phpfreaks.com/topic/60665-solved-adding-problem/#findComment-301820 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.