Guest User

Untitled

a guest
Jan 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. session_start();
  2. include('bar.php');
  3. echo $bar;
  4.  
  5. session_start();
  6. $username=$_SESSION['username'];
  7. if empty($username) {
  8. $bar='You are not logged in.';
  9. } else {
  10. $bar='You are logged in.';
  11. }
Add Comment
Please, Sign In to add comment