Skip to content

Instantly share code, notes, and snippets.

Created October 20, 2013 09:33
Show Gist options
  • Save anonymous/7067088 to your computer and use it in GitHub Desktop.
Save anonymous/7067088 to your computer and use it in GitHub Desktop.
$before = Session::get('test');
Session::set('test', Member::currentUserID());
$after = Session::get('test');
echo("before: " . $before);
echo("\nafter: " . $after);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment