![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
... sabía no debería de darte problemas
![sonrisota](http://static.forosdelweb.com/fdwtheme/images/smilies/xD.png)
pero no me quedé con la duda... hice un pequeño script:
Código PHP:
<?php
session_start();
?>
<form method="post" action="<?=$_SERVER['PHP_SELF'] ?>">
<input name="uno" type="text">
<input name="dos" type="text">
<input name="tres" type="text">
<input type="submit" name="Submit" value="Enviar">
</form>
<?php
if(isset($_POST['Submit'])) {
$uno= $_POST['uno'];
$dos= $_POST['dos'];
$tres= $_POST['tres'];
$_SESSION['arreglo']= array($uno, $dos, $tres);
for($i=0; $i<count($_SESSION['arreglo']); $i++)
echo "$i -> ".$_SESSION['arreglo'][$i]."<br>";
}
?>
No tube problema alguno... Prueba con lo que te dejo, ve si haces lo que muestro (hice lo que explicas haces
![borracho](http://static.forosdelweb.com/fdwtheme/images/smilies/borracho.png)
)... haber si hayas el error (comparando) ó si incluso lo sigues teniendo con lo que dejo...
Igual prueba poniendo entre comillas las variables dentro del arreglo (
array("$var", "$var2",...)) no tendría porque haber diferencia pero... no está de más...
Si no tienes problema con lo que dejo y "hacemos" lo mismo... entonces pasemos a el cómo imprimes
![sonrisota](http://static.forosdelweb.com/fdwtheme/images/smilies/xD.png)
...
Suerte!