¡Muchísimas gracias!
Según yo intenté usar las variables de sesión pero no me funcionan o no sé qué esté haciendo mal. He aquí mi código:
index.php
Código:
<?php
session_start();
$_SESSION['foo'] = 'HOLA';
?>
<html>
<body>
<?php
echo 'Variable de sesion '.$_SESSION['foo'];
?>
<form action="hola.php" method="post" name="hola">
<input type="text" name="inputX" />
</form>
</body>
</html>
hola.php
Código:
<?php
echo 'Variable de sesion '.$_SESSION['foo'];
?>
La salida de hola.php es:
Gracias!