![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
20/06/2006, 05:25
|
![Avatar de spider_boy](http://static.forosdelweb.com/customavatars/avatar49752_2.gif) | | | Fecha de Ingreso: diciembre-2003 Ubicación: Chile
Mensajes: 1.855
Antigüedad: 21 años, 2 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í
:/ |