Skip to content

Instantly share code, notes, and snippets.

@radmen
Created April 19, 2013 12:32
Show Gist options
  • Save radmen/5420036 to your computer and use it in GitHub Desktop.
Save radmen/5420036 to your computer and use it in GitHub Desktop.
L4 - Loading session from query param
<?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