Hi everyone,
i have a tricky situation here...
I'm working on a project that requires session for logins.
The problem is PHP DOES NOT generate a new session id, even if the
appropriate functions are used. I have a little login test site that worked
absolutely perfect, with sessions generated at
At 03:58 PM 3/18/2002 +0100, Martin wrote:
>Hmm I have registred the Session $Namn
>by the following snippet:
>
><< File1 >>
>session_register("Namn");
>$Namn = "sweden";
>echo"ett litet test med sessioner";
>?>
Should there be a session_start() here? You have session.auto_start set to
0 in you
Hmm I have registred the Session $Namn
by the following snippet:
<< File1 >>
And when I goes to:
<< File2 >>
Nothings happening...
My Session in php.ini looks like this:
[Session]
; Handler used to store/retrieve data.
session.save_handler = files
; Argument passed to save_handler. In the
On the recommendation of another, I have abandoned cookies, sort of, and
gone for sessions instead.
I've tried to write it so that when a user logs onto my site for the first
time they input all their details a session is registered, which I
(unoriginally) called $session from someone else's exam