checkbox values calculation with PHP

Reply

Join Date: Jul 2005
Posts: 19
Reputation: egoleo is an unknown quantity at this point 
Solved Threads: 0
egoleo egoleo is offline Offline
Newbie Poster

checkbox values calculation with PHP

 
0
  #1
Aug 16th, 2005
I have checkboxes with an amount as values.
Can someone help on how to fine the total of
checkbox values and sent to an email using php?
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 508
Reputation: techniner is an unknown quantity at this point 
Solved Threads: 19
techniner techniner is offline Offline
Posting Pro

Re: checkbox values calculation with PHP

 
0
  #2
Aug 17th, 2005
Put the check boxes in a form
  1. <form method="post">
  2. <input TYPE="checkbox" NAME="five" VALUE="5" checked>Five
  3. <input TYPE="checkbox" NAME="ten" VALUE="10" checked>Ten
  4. <input type="submit" name="go" value"Submit This">
  5. <form>


Then Above that you put:
  1. <?
  2.  
  3. if ($go) {
  4.  
  5. $add_this=$_POST['five'];
  6. $add_that=$_POST['ten'];
  7. $total=$add_this+$add_that;
  8.  
  9. echo $total;
  10. }
  11. ?>
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 19
Reputation: egoleo is an unknown quantity at this point 
Solved Threads: 0
egoleo egoleo is offline Offline
Newbie Poster

Re: checkbox values calculation with PHP

 
0
  #3
Aug 18th, 2005
Thanks. but It did not work. When i click on it nothing happens.
maybe i should show u the site which i am using it on so that u can help me on it.
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 508
Reputation: techniner is an unknown quantity at this point 
Solved Threads: 19
techniner techniner is offline Offline
Posting Pro

Re: checkbox values calculation with PHP

 
0
  #4
Aug 18th, 2005
Yes. Paste me your code and I will do it for you.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC