Problem with check boxes... please help!

liunx

Guest
Can someone please help me out?<br />
<br />
How come my forms and check boxes are working but when I check more than one box, all of the checked items aren't sent to my mailbox? I am only sent the first item that was checked. Can someone please check out:<br />
<br />
<!-- m --><a class="postlink" href="http://www.dyingtobealive.com/taylor/store">http://www.dyingtobealive.com/taylor/store</a><!-- m --><br />
<br />
And tell me where I went wrong in the HTML? My e-mail address is <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->. Any response would be GREATLY appreciated. Thank you!<!--content-->you can not nest forms, get rid of all but the first form tag, and after your submit button put a clsing form tag </form><br />
<br />
you have lots of form tags, like: <FORM NAME="MARYLAND"><br />
<br />
get rid of all of those, what you should have is:<br />
<br />
<form action="mailite.php" method=POST><br />
input fields<br />
form buttons<br />
</form><!--content-->Thank you for responding. I got rid of the <FORM NAME="______"> tags and I'm still only receiving one checked item per category in my mailbox. Can you spot what went wrong now? I wish there was an easier way to do this stuff. :confused:<!--content-->you only recieve one becasue you namd them all the same.<br />
<br />
<INPUT TYPE="checkbox" NAME="SETS" <br />
<INPUT TYPE="checkbox" NAME="SETS" <br />
<INPUT TYPE="checkbox" NAME="SETS" <br />
<INPUT TYPE="checkbox" NAME="SETS" <br />
<INPUT TYPE="checkbox" NAME="SETS"<br />
<br />
that is the first category. the names have to be different if you want the value for each one.<!--content-->THANK YOU! It's working now! Thank you so much for your help! This forum is a great place! :D<!--content-->
 
Back
Top