Skip to content

Instantly share code, notes, and snippets.

@ExperimentGarden
Created February 25, 2010 00:06
Show Gist options
  • Save ExperimentGarden/314064 to your computer and use it in GitHub Desktop.
Save ExperimentGarden/314064 to your computer and use it in GitHub Desktop.
<?php
$_SESSION['loggedIn'] = 1;
if($_SESSION['loggedIn']===1)
{
echo "Logged in!";
}
$_SESSION['loggedIn'] = 0;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment