Ver Mensaje Individual
  #6 (permalink)  
Antiguo 11/10/2006, 10:55
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
Supongo que haces esto...

Código PHP:
for($i 1; <= $algunnumero$i++)
{
$variable[$i]=$_POST['variable'][$i];

Pero puedes hacerlo así...

Código PHP:
foreach($_POST['variable'] as $valor)
{
 echo 
$valor;

Nos vemos :)