php fails to store any _SESSION or _GLOBALS variable
- by ebtesting
Hi All,
I am storing a session and a global variable in file1.php. However, when I try to access those from file2.php I get nothing. I am using php 5.1.6.
$_SESSION['abc'] = $a;
$GLOBALS['def'] = $b;
Any idea?
Thanks in advance.