Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/10/2006, 12:32
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 21 años, 3 meses
Puntos: 89
Código PHP:
<input type="text" name="vector[]">
<
input type="text" name="vector[]">
<
input type="text" name="vector[]">
<
input type="text" name="vector[]">
<
input type="text" name="vector[]"
Ahí tenemos 5 inputs... Para recibir sus valores al ser enviados...

Código PHP:
foreach($_POST['vector'] as $vector)
{
 echo 
$vector."<br/>";

Ahí lo adaptas tú para tu form... Nos vemos :)