Ver Mensaje Individual
  #7 (permalink)  
Antiguo 28/10/2012, 12:24
Avatar de rodrigo791
rodrigo791
 
Fecha de Ingreso: noviembre-2009
Ubicación: Uruguay
Mensajes: 1.339
Antigüedad: 14 años, 5 meses
Puntos: 168
Respuesta: captura un valor varios radiobutton con href

Fijate en esto

Código HTML:
Ver original
  1. <head><title>Titulo</title></head>
  2. <option id="radio1" value="1">ejemplo opcion</option>
  3.  
  4. var valor_radio = document.getElementById('radio1').value;
  5. document.write("<a href=Respuestas.php?opcion="+valor_radio+">respuesta</a>");
  6.  
  7. </body>
  8. </html>

luego en tu Respuestas.php pone
echo $_GET['opcion'];