Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/04/2010, 09:45
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: input en tablas

Es mejor que uses una nomenclatura de array:
Código HTML:
Ver original
  1. <input type="text" name="foo[]" />
  2. <input type="text" name="foo[]" />
  3. <input type="text" name="foo[]" />

y en PHP lo lees como array directamente:
Código PHP:
Ver original
  1. var_dump($_POST['foo']);

Saludos.