Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/04/2012, 19:26
Shozek
 
Fecha de Ingreso: octubre-2011
Ubicación: Montevideo
Mensajes: 22
Antigüedad: 13 años, 3 meses
Puntos: 1
Radio Buttons

Gente necesito hacer una aplicacion que al ir seleccionando diferentes radio buttons vaya descontando el valor que esta precargado en un text (en este caso 100). Alguien me puede dar una mano con esto??

Código HTML:
<html>
<body>

<input type="text" value="100" />

<form name="form" action="insertar.php" method="POST" >
<?php for($i=0;$i<5;$i++){ ?>
<input type="radio" name="<?php echo "group$i";?>" title="<?php echo "group$i";?>" value="0" />
<input type="radio" name="<?php echo "group$i";?>" title="<?php echo "group$i";?>" value="5" />
<input type="radio" name="<?php echo "group$i";?>" title="<?php echo "group$i";?>" value="10" />
<input type="radio" name="<?php echo "group$i";?>" title="<?php echo "group$i";?>" value="15" />
<br />
<?php } ?>

<input type="button" title="Cancelar" value="Cancelar" onclick="location.href='../index.php'" />
<input type="button" title="Enviar" value="Enviar" />
</form>


</body>
</html> 
Gracias!