I have strange problem, that don't work on server:
session_start();
$quser = new Quser($_SESSION['$fb_user_id'], $pdo);
but this, seems to be OK:
session_start();
$x = $_SESSION['fb_user_id'];
$quser = new Quser($x, $pdo);
Of course, on localhost
first option work fine. What is going on? Is there any restriction about that?