<input type="radio" name="Wed" value="" checked>None <br />
<input type="radio" name="Wed" value="Class 1">Computers <br />
<input type="radio" name="Wed" value="Class 2" >Physics (1st 5 weeks) <br />
<input type="radio" name="Wed" value="Class 3">Astronomy (2nd 5 weeks) <br />
<input type="radio" name="Wed" value="Class 4">Mathematics <br />
<input type="radio" name="Wed" value="Class 5">Literature <br />
This extract of code is from a form where a student chooses a 10-week course, run on Wednesdays. The radio button works fine and only selects one subject. You will see from the code that Physics and Astronomy are both 5-week courses and run consecutively, and a student may wish to do either course, or both.
So, here is my problem: the radio button at present selects only one of the courses, but I need the code modified so it can select either one of Physics or Astronomy, or both of them.