Bueno no se si pude explicarme bien pero tambien les posteo la tabla donde genero las filas:
Código PHP:
<form name="orden" id="orden" action="insertar_orden.php" method="post">
<table width="878" height="95" border="1" align="center">
<tr>
<td colspan="5" bgcolor="#FFFF99" class="Estilo16">PERSONAL ASIGNADO </td>
</tr>
<tr>
<td width="144" height="20" bgcolor="#FFFFC6" class="Estilo3"><div align="center" class="Estilo16">NOMBRE</div></td>
<td width="141" bgcolor="#FFFFC6" class="Estilo3"><div align="center" class="Estilo16">APELLIDO</div></td>
<td width="141" bgcolor="#FFFFC6" class="Estilo3"><div align="center" class="Estilo16">CARGO</div></td>
<td width="142" bgcolor="#FFFFC6" class="Estilo3"><div align="center" class="Estilo11">
<div align="center" class="Estilo16 Estilo18">HORAS PROG. </div>
</div></td>
<td width="276" bgcolor="#FFFFC6" class="Estilo3"><div align="center" class="Estilo11">
<div align="left" class="Estilo16"> <span class="Estilo18">HORAS REAL</span> </div>
</div></td>
</tr>
<tr>
<td height="28" colspan="5">
<input name="campos[0][campo1]" type="text" id="campos[0][campo1]" />
<input name="campos[0][campo2]" type="text" id="campos[0][campo2]" />
<input name="campos[0][campo3]" type="text" id="campos[0][campo3]" />
<input name="campos[0][campo4]" type="text" id="campos[0][campo4]" />
<input name="campos[0][campo5]" type="text" id="campos[0][campo5]" />
<input type="button" name="button" id="button" value="Crear otra fila" onClick="addFileInput()"/>
<div id="moreUploads"></div> </td>
</tr>
</table>
</form>
Código PHP:
var upload_number=1;
function addFileInput() {
var i=0;
var d = document.createElement("div");
var file = document.createElement("input");
file.setAttribute("type", "text");
file.setAttribute("size", "20");
file.setAttribute("name", "campos["+upload_number+"][campo1]");
d.appendChild(file);
var file2 = document.createElement("input");
file2.setAttribute("type", "text");
file2.setAttribute("size", "21");
file2.setAttribute("name", "campos["+upload_number+"][campo2]");
d.appendChild(file2);
var file3 = document.createElement("input");
file3.setAttribute("type", "text");
file3.setAttribute("size", "21");
file3.setAttribute("name", "campos["+upload_number+"][campo3]");
d.appendChild(file3);
var file4 = document.createElement("input");
file4.setAttribute("type", "text");
file4.setAttribute("name", "campos["+upload_number+"][campo4]");
d.appendChild(file4);
var file5 = document.createElement("input");
file5.setAttribute("type", "text");
file5.setAttribute("size", "21");
file5.setAttribute("name", "campos["+upload_number+"][campo5]");
d.appendChild(file5);
document.getElementById("moreUploads").appendChild (d);
upload_number++;
}
Muchas gracias de antemano por cualquier ayuda.
Saludos...