Piranha,
Thanks for the reply....I am going to include the html of the form....I tried your suggestion and I can't see what I have done wrong. Appreciate any assistance.
Bob
<!-- START ANSWER AREA -->
<form action="seldone.php?select=11111" method="GET"
onsubmit="return radio_button_checker()" name="radio_form">
<TABLE BORDER="0" cellpadding="2" cellspacing="0" width="100%">
<TR><TD>
<INPUT TYPE="radio" NAME="radio_button" value="1">
<B>Yes, make Instant Information my start page.</B><BR>
</TD></TR><TR><TD>
<INPUT TYPE="radio" NAME="radio_button" value="2">
<B>No, I wish to enter the regular home page.</B><BR>
</TD></TR></table>
<BR>
<INPUT TYPE="SUBMIT" name="Submit" VALUE="Save">
<br>
</FORM>
this is seldone.
<?php
$myvar2 = $_GET['select'];
echo "MyVar2: ".$myvar2;
echo "in seldone";
?>