it's possible with PHP
PHP Code:
<?php
$selected= $_GET["selected"];
?>
<input type='checkbox' name='apple' <?php if($selected=='apple') { echo "checked"; } ?>/>
<input type='checkbox' name='orange' <?php if($selected=='orange') { echo "checked"; } ?>/>
<input type='checkbox' name='banana' <?php if($selected=='banana') { echo "checked"; } ?>/>
Now, you would have to change the file extention to .php.
The links to each of those options would be:
form.php?selected=apple
form.php?selected=orange
form.php?selected=banana
you get the idea...
Bookmarks