Advertisement
Guest User

Untitled

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