Forum Moderators: coopster
if so then you will need to save the data to somewhere. A database or file would work. Then when they come back, they would have to login or identify themself in some way. Then you could load their base info from the db and present it in the forms if you want.
in your form element you would echo the $_SESSION value in the value= part of the input element
example of a text field
<input type='text' name='firstname' value='<?php echo $_SESSION['firstname'];?>'>
obviously your field names are differewnt and your session vars as well but do you get how to do it?
so
<input type='radio' name='somename' value='yes'
<?php if ($_SESSION['somevalue'] == 'yes') echo ' checked';?>>
then repeat the same for all other radios in the group, you may need to have a test in each one for that value. It depends on how it is setup