im not sure if youre talking about something like this..
this wil just echo whatever radio value was posted, and when it reprints the form, whatever one was chosen will be checked off
<?
if($_POST)
{
switch($_POST['r1'])
{
case "value1":echo "val1";break;
case "value2":echo "val2";break;
case "value3":echo "val3";break;
default:"some error";
}
}
?>
<br>
<form method="post" action="<?=$PHP_SELF?>">
<input type="radio" name="r1" value="value1" <?echo (($_POST['r1']=="value1")?"checked":"")?>>val1<br>
<input type="radio" name="r1" value="value2" <?echo (($_POST['r1']=="value2")?"checked":"")?>>val2<br>
<input type="submit">
theres a ton of easier ways to do it, but this is kind of basic -> if you still need help, post your code and tell me what you need it to do.. i can try to help
oh, you picked php over a naked gf? hahaha 😃