Radioboxes

RW_Webmaster 05 Mar, 2013
Hi. I have read your FAQ on the fact that I cannot use the <form> </form> codes. I need to create a set of radioboxes like the code below:
<form action="demo_form.asp" method="get">
<input type="radio" name="sex" value="Male"> Male<br>
<input type="radio" name="sex" value="Female" checked="checked"> Female<br>
<input type="submit" value="Submit">
</form>
How do I create the radioboxes like this and have it select only one of the boxes without the <form> </form> codes in there? Thank you. I will be using the custom HTML code. Thanks. I also would like to thank Greyhead for all of his help. At this time, I do not have any money but when I do, I would like to pay for a coffee, if that is all right.
RW_Webmaster 05 Mar, 2013
Sorry, I have learned that it will work on its own with just these lines:
<input type="radio" name="sex" value="Male"> Male<br>
<input type="radio" name="sex" value="Female" checked="checked"> Female<br>
<input type="submit" value="Submit">
Thanks. I will be closing this thread.
GreyHead 05 Mar, 2013
Hi RW_Webmaster,

That's correct, ChronoForms adds the <form>tags.

You could also do this using a Radio Box element and a Submit Button element in the Wizard.

The Radio Box would need to have the Field name sex, The Field Default Value Female and this in the Options box:
Male=Male
Female=Female

Bob
This topic is locked and no more replies can be posted.