¿Cómo puedo hacer para guardar la función o el array de "dos.php" en una variable de sesión y mostrarla en "tres.php"?
Gracias.Saludos.
Código PHP:
Ver original
uno.php <html> <body> <p> <form name="formulario"method="get"action="jugar.php"> Nombre: <input type="text"name="nombre"value="Nombre del jugador"> <br/><br/> <input type="submit" value="Jugar"/> </form> </p> </body> </html>
Código PHP:
Ver original
Código PHP:
Ver original
tres.php <html> <body> <?php $_SESSION['sesion']=$_REQUEST['nombre']; echo $_SESSION['sesion']; ?> <?php include 'dos.php'; ?> </body> </html>