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>