Skip to content

Instantly share code, notes, and snippets.

@tylerkidd
Created January 29, 2015 20:39
Show Gist options
  • Save tylerkidd/41714e9af42fa683d938 to your computer and use it in GitHub Desktop.
Save tylerkidd/41714e9af42fa683d938 to your computer and use it in GitHub Desktop.
if(session_id() == '') {
session_start();
}
if(isset($_GET['demo'])){
if($_GET['demo'] == 'on'){
$_SESSION['demo'] = 1;
}else{
unset($_SESSION['demo']);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment