Posted by schwooba on 02/27/07 19:00
Hello...I have an html form with radio and select controls that I want
to email to a user but can't quite grasp the way I should set this up.
If someone selects "a" and "milk" I want it to email abc. If they
select "a" and "cookies" it should go to xyz. Any help would be
appreciated.
input type="radio" name="type" value="a"
input type="radio" name="type" value="b"
input type="radio" name="type" value="c"
<select name="location">
<option>milk</option>
<option>cookies</option>
</select>
[Back to original message]
|