I need to create a html form with option set, with options preselected just to display and convert to pdf
this list in a different database with answers
I like red – yes (100000000)
I love green – No (100000001)
I am creating a html form with
<html>
<body>
<p><p>I like red:
<input type="radio" name="OptionChosen" id="100000000" value="yes" />
Yes
<input type="radio" name="OptionChosen" id="100000001" value="no" />
No</p></p>
<p><p>I Love Green:
<input type="radio" name="OptionChosen" id="100000000" value="yes" />
Yes
<input type="radio" name="OptionChosen" id="100000001" value="no" />
No</p></p>
</body>
</html>
how should i update this yes/ no by default