spewn
Programmer
- May 7, 2001
- 1,034
i have a quiz with 20 questions. each question has between 2 and 5 possible answers, with a radio button for each answer.
i have set up a question to demonostrate how each radio button goes:
the question comes up when i validate the html. it says that the ID 'question1' already has been assigned.
is it okay if i leave the id's the same?
- g
i have set up a question to demonostrate how each radio button goes:
Code:
do you like hot dogs?
<input type=radio id=question1 name=question1 value=q1yes>
<input type=radio id=question1 name=question1 value=q1no>
<input type=radio id=question1 name=question1 value=q1maybe>
the question comes up when i validate the html. it says that the ID 'question1' already has been assigned.
is it okay if i leave the id's the same?
- g