you only need to register vars with the session once.

Steve

"Rudolf Visagie" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi Bernie,
>
> Do a session_register in the second script as well:
> <?php
> > session_start();
> > session_register("my_session_variable");
> > print "Value of 'my_session_variable': $my_session_variable";
> > ?>
>
> Rudolf Visagie
>
> -----Original Message-----
> From: Bernie Kruger [mailto:[EMAIL PROTECTED]]
> Sent: 19 July 2001 04:55
> To: [EMAIL PROTECTED]
> Subject: [PHP] Re: Session problems
>
>
> Tried everything all of you suggested, still no luck :-(
>
> BK
>
> "Bernie Kruger" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > Hi,
> >
> > I use this simple session script below,  but the session variables are
not
> > carried over from 1.php to 2.php.  What can be wrong?  I can see on the
> > server that the files are created.  When I open 1.php a 1K file is
created
> > on the server and the contents (my_session_variable|s:10:"some value";).
> > When I open 2.php afterwards a 0K file is created on the server which is
> > empty.
> >
> > I use IIS5, Win2k, PHP 4.0.5, IE5.5.
> > Session method: files
> >
> > (1.php)
> >
> > <?php
> > session_start();
> > $my_session_variable = "some value";
> > session_register("my_session_variable");
> > ?>
> >
> > and
> >
> > (2.php)
> >
> > <?php
> > session_start();
> > print "Value of 'my_session_variable': $my_session_variable";
> > ?>
> >
> > Tx
> > BK
> >
> >
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to