Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/07/2006, 07:27
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
Código PHP:
// Genramos la cantidad de inputs...
for($i 1$i <= 25$i++)
{
echo 
"<input name=\"EstDivAncho[]\" id=\"EstDivAncho[]\" type=\"hidden\" value=\"0\">";
}

// Para recibir esos datos de arriba...

foreach($_POSt['EstDivAncho'] as $divAncho)
{
echo 
$divAncho."<br>";
}

// Para el alto lo mismo que arriba
for($i 1$i <= 25$i++)
{
echo 
"<input name=\"EstDivAlto[]\" id=\"EstDivAlto[]\" type=\"hidden\" value=\"0\">";
}

// Y los recibimos...
foreach($_POST['EstDivAlto'] as $divAlto)
{
echo 
$divAlto."<br>";

Prueba si te sirve eso :P