How do I make more than three options using radio buttons?
A
Using Form Decode, insert the following tag.
Example: If you want to choose one from three types of gender.
Gender <input type="radio" NAME="gender" VALUE="male">Male<input type="radio" NAME="gender" VALUE="female">Female<input type="radio" NAME="gender" VALUE="other">Other<br>
For the template file “seikei.tpl" (create email), enter the following.
What is your gender?: $_SELECT{VAL,gender,male,female,other}
Example: If you want to choose one from three types of gender.
Gender <input type="radio" NAME="gender" VALUE="male">Male<input type="radio" NAME="gender" VALUE="female">Female<input type="radio" NAME="gender" VALUE="other">Other<br>
For the template file “seikei.tpl" (create email), enter the following.
What is your gender?: $_SELECT{VAL,gender,male,female,other}