Well, I need to save several groups of radiobuttons in the bank. Example:
<input type="radio" value="sim" name="grupo1">
<input type="radio" value="nao" name="grupo1">
<input type="radio" value="sim" name="grupo2">
<input type="radio" value="nao" name="grupo2">
<input type="radio" value="sim" name="grupo3">
<input type="radio" value="nao" name="grupo3">
There are 3 different groups, so I need to save the value of the chosen radio of each group in the bank.
Any help?