Advertisement
Antic

home.php

Sep 3rd, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. ?>
  5.  
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <title>BOOS Mare Mare Mare Mare Boos</title>
  10. <link rel="stylesheet" type="text/css" href="style.css">
  11. </head>
  12. <body>
  13. <div class="header">
  14. <h1>BOOS Mare Mare Mare Mare Boos</h1>
  15. </div>
  16. <?php
  17. if (isset($_SESSION['message'])) {
  18. echo "<div id='error_msg'>".$_SESSION['message']."</div>";
  19. unset($_SESSION['message']);
  20. }
  21.  
  22. ?>
  23.  
  24.  
  25. <h1>Acasa</h1>
  26. <div><h4>Bine ai venit <?php echo $_SESSION['username']; ?></h4></div>
  27. <div><a href="logout.php">M-am plictisit!Ies afara</a></div>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement