I use a script on my site where I use session id. I set it up like:
session_start();
on top of each page and attache myVar to it.
It appears that my host changed something on the server last night, because the script stopped working.
How can I check if the session is set?
I've tried using:
echo $_SESSION['myVar'];
but cann't seem to be able to see it.
What do I do next?