Heya-
this is my first form ever so I'm sorry for the question...
Everything seems to work fine, I'm able to collect data from "inputs type=text" but nothing is comming from radios and checkboxes (like it was not filled). Select-Option is working as well.
Any suggestions?
Update: I can see the results when I click EDIT under submisions but when I click Display in HTML/Download in CSV/XLM... only text boxes are shown, not checkboxex a radios. Strange (to me).
this is my first form ever so I'm sorry for the question...
Everything seems to work fine, I'm able to collect data from "inputs type=text" but nothing is comming from radios and checkboxes (like it was not filled). Select-Option is working as well.
Any suggestions?
Code:
<fieldset>
<input type="radio" name="test" value="first"/> first
<input type="radio" name="test" value="second"/> second
</fieldset>
= NO RESULT - I need to know if fist or second was selected.
<fieldset>
<input name="test2" type="text"/></p>
</fieldset>
= CORRECT RESULT - I can se the input.
Update: I can see the results when I click EDIT under submisions but when I click Display in HTML/Download in CSV/XLM... only text boxes are shown, not checkboxex a radios. Strange (to me).