04/03/2008, 19:51
|
| | | Fecha de Ingreso: julio-2003
Mensajes: 1.773
Antigüedad: 21 años, 5 meses Puntos: 21 | |
Re: Agregar, quitar alternativas (campos de texto) cada vez que se agregue un mismo componente, para poder recoger sus valores en el server digamos con php
debes hacer un arreglo de ese componente
ya se un input text o select o radio, etc
ejemplo
<td height="22" width="20"><input type="text" size="10" name="txtvccArticulo[]"></td>
<td height="22" width="20"><input type="text" size="10" name="txtcantArticulo[]"></td>
<td height="22" width="20"><input type="text" size="10" name="txtprecioArticulo[]"></td>
<td height="22" width="20"><input type="text" size="10" name="txtimpuestoArticulo[]"></td>
<td height="22" width="20"><input type="text" size="10" name="txtimporteArticulo[]"></td>
<td height="22" width="20"><input type="text" size="10" name="txttotalArticulo[]"></td>
en el archivo php
tendrias que hacer asi
for($i=0;$i<count($_POST['txtimpuestoArticulo']);$i++)
{
echo $i."---".$_POST['txtimpuestoArticulo'][$i]."<br>";
}
esto solo de elemento text llamado txtimpuestoArticulo
espero te sirva de guia
saludos
__________________ gerardo |