Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. session_start();
  3. if(empty($_SESSION["role"])){
  4. header('Location: connexion.php');
  5. }else{
  6. echo("
  7. <!DOCTYPE html>
  8. <html lang='en'>
  9. <head>
  10. <meta charset='UTF-8'>
  11. <meta name='viewport' content='width=device-width, initial-scale=1.0'>
  12. <title>Document</title>
  13. </head>
  14. <body>
  15. <h1>ss</h1>
  16. </body>
  17. </html>
  18. ");
  19. }?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement