Radio is a single option, and the names in it must be consistent. Your name="gender" above and name="nvde" below are equal to two single options. Of course, the status of the other one remains unchanged
Because the radio button control can only select one at a time, no matter how many radios there are, their name attribute values must be the same, so as to ensure that only one value is passed to the server deal with.
In your code, the first line, name="gender", the second line: name="nvde", the name values here must be the same.
Radio is a single option, and the names in it must be consistent. Your name="gender" above and name="nvde" below are equal to two single options. Of course, the status of the other one remains unchanged
The correct syntax should be written like this:
Because the radio button control can only select one at a time, no matter how many radios there are, their name attribute values must be the same, so as to ensure that only one value is passed to the server deal with.
In your code, the first line, name="gender", the second line: name="nvde", the name values here must be the same.
Please modify it before running it.