Advertisement
PluzVS

PHP Login Painel

Mar 20th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.         session_start();
  3.    
  4.     if(!isset($_SESSION["id"]) || !isset($_SESSION["username"])){
  5.         header("Location: index.php");
  6.     }else{
  7.        
  8.     }
  9. ?>
  10.  
  11. <html>
  12.     <head>
  13.     <title> Login Pluz VS</title>
  14.     <meta charset="UTF-8">
  15.     </head>
  16.    
  17.     <body>
  18.         <a href="logout.php"> Logout </a>
  19.     </body>
  20.  
  21.  
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement