Hi
I don't know how to make and read session variables. I've used session vars in ASP, and there was preaty simple, but here in php...uf.
In somethin.php I've write this to make a session variable:
session_register("sesime");
And then in another php file I used:
if (session_is_registered("sesime")):
(do something)
But the function session_is_registered is false! Why?
Help! I'm doing a login page where username will be stored in a session var.
Thanks!