A que te refieres sin ningun metodo?
Prueba esto:
Código HTML:
<form action="prueba.php" method="post">
Selecciona el SO:
<input type="radio" name="so" value="winxp" /> WinXP <br />
<input type="radio" name="so" value="winvista" /> WinVista <br />
<input type="radio" name="so" value="linux" />Linux <br />
<input type="submit" name="enviar" value="Enviar" />
</form>
prueba.php
Código PHP:
<?php
echo "El valor del radio es: " . $_POST['so'];
?>