Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/01/2009, 13:20
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: Multiples inserciones

Claro es posible, lo mejor es usar un array para subir los datos:
Código html:
Ver original
  1. <input type="text" name="foo[]" value="" />
  2. <input type="text" name="foo[]" value="" />
  3. <input type="text" name="foo[]" value="" />
  4. <input type="text" name="foo[]" value="" />

En PHP lo rescatas simple:
Código php:
Ver original
  1. <?php
  2. foreach($_POST['foo'] as $bar) {
  3.      echo $bar . "<br />";
  4. }

Saludos