Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/02/2011, 15:04
Ibiza3
 
Fecha de Ingreso: noviembre-2006
Mensajes: 49
Antigüedad: 17 años, 5 meses
Puntos: 0
Respuesta: Duplicar tabla con formulario

Pues lo que intento hacer es

Código:
<form action="Main.php" method="post" target ="mainFrame">
	<table id="myTable" border="1">
	<tr id="celda" class="celda">
	<td>1</td>
	<td><input size=15 name="IPini" value="10.201." ></td>
	<td><input size=15 name="IPfin" value="10.201." ></td>
	<td><input type="text" name="ancho" value="0"></td>
	<td><input type="text" name="delay" value="0"></td>
	<td><input type="button" value="Delete" onclick="deleteRow(this)" ></td>
	<td>2</td>
	</tr>
	</table>
	
	<br /><br />
	<input type='hidden' name='On' value='On' />
	<input type="submit" id="submit_btn" value="Actualizar Conexiones"/>
	<input type="submit" onclick="addNewRow()" value="Insert row" />
	</form>

Pero no se como colocar los form para porderlos duplicar.