I've constructed a survey form, and I want to make the radio buttons sticky, so that if participants leave the page, they can return to find their answers still in tact. However, I can't seem to find the right code to make the radio buttons sticky. Below is the code I'm using. Any help would be appreciated.
Code:
<p>Do you enjoy web designing?<br /> <input name="ans1" type="radio" value="yes" <?php if ($_GET["ans1"]=="yes") echo "checked=\"checked\""; ?>/> yes <input name="ans1" type="radio" value="no" <?php if ($_GET["ans1"]=="no") echo "checked=\"checked\""; ?>/> no <input name="ans1" type="radio" value="unsure" <?php if ($_GET["ans1"]=="unsure") echo "checked=\"checked\""; ?>/>unsure</p>
Comment