Mi problema es el siguiente... tengo un formulario(Form1) de java que genera una fila en mi formulario de html y quisiera que al mandar llamar a mi formulario (Form2) poder cachar todas las variables de java..... y no se como hacerlo
¿Como las mando llamar? lo intente con $fil1=$_POST["fil1"]; pero no funciona
¿Como meterlas en un arreglo?(en PHP)
-- Aquí les pongo, mi codigo del Form1
-- Cualquier sugerencia se los agradezco
Código HTML:
<script type="text/javascript"> <!-- num=0; function crear(obj) { num++; fi = document.getElementById('fiel'); // 1 contenedor = document.createElement('div'); // 2 contenedor.id = 'div'+num; // 3 fi.appendChild(contenedor); // 4 ele = document.createElement('input'); // 5 ele.name = 'fil'+num; // 6 contenedor.appendChild(ele); // 7 ele = document.createElement('input'); // 5 ele.type = 'button'; // 6 ele.value = 'X'; // 8 ele.name = 'div'+num; // 8 ele.onclick = function () {borrar(this.name)} // 9 contenedor.appendChild(ele); // 7 } function borrar(obj) { fi = document.getElementById('fiel'); // 1 fi.removeChild(document.getElementById(obj)); // 10 } --> </script> </head> <body> <center> <form method="post" action="respuesta_valida.php" id="formu" name="formu"> <table style="text-align: left; width: 540px; height: 159px;" border="1" cellpadding="0" cellspacing="0"> <tbody> <tr > <td> Email</td> <td style="color: rgb(0, 153, 0);" fieldset id="fiel"><small></small> <input size="20" name="email1"><input type="button" value="+ Email" onclick="crear(this)" /> </td/fieldset> </tr > </table> <input type="submit" name="enviar" value="Enviar" /> </form>
saludos y Gracias....