I have a system in which student will have to select his class via radio buttons. And then I want to display course offered for that class via check boxes so he can check subjects.Or in simple word I want to display different check boxes for different radio button selected value.Help needed for this?
BCA
<input type="radio" name="Course_BCA" value="BCA">
B.Com
<input type="radio" name="Course_BCA" value="B.Com">
B.Sc
<input type="radio" name="Course_BCA" value="B.Sc">
B.A
<input type="radio" name="Course_BCA" value="B.A">
Here should be checkboxes,If BCA is selected by user then
<input type="checkbox" name="eng" value="English">
<input type="checkbox" name="math" value="math">
would be diplayed.and if he selects B.Com then
<input type="checkbox" name="stat" value="stat">
<input type="checkbox" name="comp" value="comp">
should displayed to him.And same is case for rest to two.How I will do this?
I hope it’ll be helpful for you