Hello.
You have made this form go to index.php?action=save, but now the action=save becomes obeselete. Since you may have other things on this page in this specific instance i would have soemthing like this:
<form method="POST" action="index.php?action=save">
<p><input type="radio" value="gg" name="R1"></p>
<p><input type="radio" value="hh" name="R1"></p>
<p><input type="submit" value="Submit" name="B1">
<input type="reset" value="Reset" name="B2"></p>
</form>
if($action == "save") { //All this says really is if the form is submitted
echo "The form has been processed."; //Confirms that the user/person submitted form.
mysql_query ("UPDATE myable SET radio = '$R1' WHERE option = $option") or die("INSERT error0: ".mysql_error()); //This will then insert it into the DB
}
That should work for your. Write Back with your resaults.
Regards
NZB