Cookie Session Php

  $auth = $_COOKIE['auth'];
  header( "Cache-Control:no-cache" ); 
  if( ! $auth == "ok" ) 
  {
    header("Location:login.php" );
    exit();
  }
?>

 
  Still Logged In
 
 
  You are still logged in ...