Guest User

Untitled

a guest
Jul 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. if ( isset($_SESSION['active']) )
  4. {
  5. $username = $_SESSION['username'];
  6. }
  7. else
  8. {
  9. $username = 'Anonymous';
  10. }
  11. ?>
  12. <html>
  13. <body>
  14. <h1>Welcome <?php echo $username;?></h1>
  15. <p>Rawr!</p>
  16. </body>
  17. </html>
Add Comment
Please, Sign In to add comment