Skip to content

Instantly share code, notes, and snippets.

@lemon-tree
Created December 7, 2010 17:16
Show Gist options
  • Save lemon-tree/732082 to your computer and use it in GitHub Desktop.
Save lemon-tree/732082 to your computer and use it in GitHub Desktop.
define('COOKIE_PREFIX', 'pre_');
function logged_in_user(){
$var = COOKIE_PREFIX."user";
if(isset($_COOKIE[$var])){
return $_COOKIE[$var];
}else{
return 'Guest';
}
}
@callumacrae
Copy link

hello

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment