Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. session_start();
  3. if(!isset($_SESSION["usuario"])) exit(); #Salir si sesión no está iniciada
  4.  
  5. #Recuperar los mensajes de un archivo
  6. $mensajes = [];
  7. if(file_exists("mensajes.txt")){
  8. $mensajes = explode("\n", file_get_contents("mensajes.txt"));
  9. }
  10. ?>
  11.  
  12. <!DOCTYPE html>
  13. <html lang="es">
  14. <head>
  15. <meta charset="UTF-8">
  16. <title>Tablero</title>
  17. </head>
  18. <body>
  19. <h1>Hola <?php echo $_SESSION["usuario"]; ?></h1>
  20. <a href="logout.php">Salir</a>
  21. <a href="nuevo.html">Agregar mensaje</a>
  22. <h3>Aquí están todos los mensajes del día:</h3>
  23. <?php foreach ($mensajes as $mensaje) {
  24. echo $mensaje . "<br>";
  25. } ?>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement