I have a $token of a session.
How can I check if the current session belongs to this token without using cookies?
I tried some this:
$token = strip_tags($_GET['key']); // Here I obtain the token of a user
$session = new sfsession();
$session->setId($token);
$session->start();
In this point, I have to check if the current session belongs to the session with token $token.