check for a valid login in sessions : _SESSION « Cookie Session « PHP






check for a valid login in sessions

 
<?php 
if ($_SESSION['loggedin']){ 
echo "Proper login"; 
} else { 
echo "You are not logged in."; 
} 
?>
  
  








Related examples in the same category

1.Count Visits with session
2.Counting page accesses with a session
3.Implementing Sessions
4.Printing session data
5.Registering a variable by including it in $_SESSION
6.Session based counter
7.Session preferences
8.Session using the proper $_SESSION super global
9.Verifying session info
10.create_session_variable.php
11.delete_session_variable.php
12.Doing something special for a logged in user
13.Setting Up Cookie Authentication