Hi
I am trying to create a form that accepts a radio button value and takes the user to a new page. I need the radio button value to bring up some information in the new page. But the value of the radio button variable is not being set. This is the code I am using.
if (isset($submit))
{
$id=$sel;
header("Location: edit_user.php?sel=$id");
}
<form name="formManageUsers" action="manage_users.php" method="get" >
..
<tr><td><input type="radio" value="<?=$ID?>" name=sel/><font align="left" colspan="1" nowrap>
..
<input type ="submit" Name="submit" Value="submit"></td>
</form>
I am taken to the next page but the value of "sel" is lost!
Help!!