heres my problem.
the index.php file Code:
<?php
require_once ('../src/facebook.php');
$facebook = new Facebook(array(
'appId' => 'xxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxx',
'cookie' => true,
));
$session = $facebook->getSession();
print_r($session);
?>
It works fine, i do have all the $session information.
But as soon as i call index.php?param=x, i dont have anymore my session information.
How come?