![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/11/2007, 08:52
|
| | Fecha de Ingreso: julio-2007
Mensajes: 11
Antigüedad: 17 años, 7 meses Puntos: 0 | |
Re: Llenar Un Arreglo Con Text Grass por la ayuda y asoluciones la cuestion era solo
<?
echo "<form action='resive.php' method='post'>";
$i = 1;
while($i<=7)
{
echo "<td><input type='text' name='nombre[$i]'></td>";
$i++;
}
echo "<input type='submit' value='Enviar' />";
echo "</form>";
?>
y resivirlo
<body>
<?
$_POST["nombre"];
for ($n=1;$n <=7;$n++)
{
echo $_POST['nombre'][$n];
}
?>
Grass |