Advertisement
Guest User

Untitled

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