Hello.
I have installed XAMPP (light) on my windows xp pc - But there is something wrong with my SESSIONS. If I declare a session it does not work across pages:
page1:
if (!isset($SESSION)) {
session_start();
}
$SESSION["sestest"] = "hello";
echo $_SESSION["sestest"];
page2:
if (!isset($SESSION)) {
session_start();
}
echo $SESSION["sestest"];
page1 says hello, but nothing at page2. Please help.
Best regards.
Asbjørn Morell.