[PHP Version 4.3.2]
I am setting up a framed page (which I usually do not do). And I am having a problem with sessions. I set up a quick test code to read my session value.
This works - prints the value
<? echo $_SESSION['demo'];?>
But this does not work - no value is printed
if (isset($_SESSION['$demo'])) {
echo $_SESSION['demo'];
}
Any clue why?