Why does this work:
echo $session->name;
require_once('test.php');
//echos the name then loads the required page
But
var_dump($session->name);
in the code of test.php returns NULL.
I thought require_once pretty much plops all the code from the required page into the spot I told it to.
EDIT
$session instance is created before the require, outside of test.php. If I create a new instance of $session inside test.php it works. Glad it works but this still doesnt make sense to me, can anyone explain?
test.php.var_dump($session)returns an object when outside of test.php but NULL when inside of it. – Time Travel Mishap Jul 2 '12 at 3:52