-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandingExitoso.php
33 lines (28 loc) · 958 Bytes
/
landingExitoso.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>¡Éxito!</title>
</head>
<body>
Aquí sólo llega el sabio que hizo correctamente su script de PHP y está entrenado para superar el temido y malévolo error 500 de HTTP.
<?php
function mostrarSesión()
{
echo ("<br>idUsuario: " . $_SESSION['idUsuario'] . "<br>");
echo ("nombreU: " . $_SESSION['nombreU'] . "<br>");
echo ("apellidosU: " . $_SESSION['apellidosU'] . "<br>");
echo ("emailU: " . $_SESSION['emailU'] . "<br>");
#echo ("contraseñaU: " . $_SESSION['contraseñaU'] . "<br>");
echo ("direccionU: " . $_SESSION['direccionU'] . "<br>");
}
mostrarSesión();
echo ("Index: <a href='index.php'>index.php</a>");
?>
</body>
</html>