Studiati questo codice:

Codice PHP:
<form method="post">
<input type="radio" value="1" name="tipo" checked="checked" />
<input type="radio" value="2" name="tipo" />
<input type="submit" />
</form>
<?php 
if (isset($_POST['tipo'])) {
    echo(
'$_POST["tipo"] = ' $_POST['tipo']);
}
?>