I have a little problem with my session variables. I have an object instanciate from a class named User. In this class, I have a method to connect the user:
function Connect($Login, $Password)
{
SQL_Query...
...
// My session is started automaticaly
session_register($Login);
session_register($Password);
}
All work fine, but my session variables are empty! And it's realy weird because my session variables are declared... but empty!
Please help me!