Created
April 19, 2013 12:32
-
-
Save radmen/5420036 to your computer and use it in GitHub Desktop.
L4 - Loading session from query param
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$id = Input::get('SSID'); | |
Session::save(); | |
Session::setId($id); | |
unset($_SESSION); | |
Session::start(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment