Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2006, 05:25
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 4 meses
Puntos: 89
No te aseguro que funcione, pero lo intentaré...

primero creamos los inputs texts...

for($i = 1; $i <= 10; $i++)
{
echo "<input type=text name=text_$i>";
}

luego al enviar como post

for($i = 1; $i <= 10; $i++)
{
echo $_POST['text_'.$i];
}

creo que sería algo así

:/