asi
Código HTML:
<html> <head> <script type="text/javascript"> counter = 1; function agregarCampo() { var x = document.getElementById("campos_txt"); var campo = document.createElement("input"); campo.setAttribute('type', "text"); campo.setAttribute('name', "texto[]"); campo.setAttribute('id', "texto"+counter); var br = document.createElement("br"); x.appendChild(document.createTextNode("Cargo "+counter+": ")); x.appendChild(campo); x.appendChild(br); counter++; } function borrarElemento() { var x = document.getElementById("campos_txt"); x.removeChild(x.lastChild); x.removeChild(x.lastChild); x.removeChild(x.lastChild); } </script> </head> <body> <form name="form1" method="post" action="php/php_add_campo_text.php"> <p>dddd</p> <div id="campos_txt"> </div> <p> <label> <a href="#" onClick="agregarCampo()">Añadir Cargo</a> | <a href="#" onClick="borrarElemento()">Borrar Cargo</a> <input type="submit" name="Submit" value="Submit"> </label> </p> </form> </body> </html>
lo cual hago asi
Código PHP:
<?php
echo "valores <br>";
foreach($_POST["texto"] as $k => $v){
echo $k . " = " . $v . "<br />";
}
?>
gracias por la ayuda !!!