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 Quote Link to comment 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. Quote Link to comment 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 Quote Link to comment 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. Quote Link to comment 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 =[ Quote Link to comment Share on other sites More sharing options...
decypher Posted July 18, 2007 Author Share Posted July 18, 2007 all working now Thanks alot Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.