| re: Session value in include
*** BlueFrog wrote/escribió (Mon, 20 Sep 2004 07:29:00 +0100):[color=blue]
> I am having a problem accessing a session value from an include file - I
> echoed out session_id() from the include and it changes each time I navigate
> from one page which includes the include to another. Why is this happening
> as I'm pretty sure that's what is preventing me accessing my session. I'm
> using cookie based sessions. This is driving me nuts - please help![/color]
Including file is the same as pasting the code. The only thing I can think
of with all the incredible amount of info you provide :) is that you're
including a file through a web server:
include('http://........');
If the included code relies on sessions, this doesn't make much sense. It's
your webserver the one that opens the session, not the client browser. What
could be the purpose of that?
--
-- Álvaro G. Vicario - Burgos, Spain
-- Thank you for not e-mailing me your questions
-- |