Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/05/2007, 12:59
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 9 meses
Puntos: 2135
Re: enviar valor de un radio button

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'];
?>