Connecting Tech Pros Worldwide Help | Site Map

Session value in include

  #1  
Old July 17th, 2005, 09:41 AM
BlueFrog
Guest
 
Posts: n/a
Hi,

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!

Blue Frog


  #2  
Old July 17th, 2005, 09:41 AM
Alvaro G Vicario
Guest
 
Posts: n/a

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
--
  #3  
Old July 17th, 2005, 09:41 AM
BlueFrog
Guest
 
Posts: n/a

re: Session value in include


Thanks a lot - that was the one thing that didn't occur to me and it was the
thing that should have.

Joe


"Alvaro G Vicario" <alvaro_QUITAR_REMOVE@telecomputeronline.com> wrote in
message news:1qez4kvdfyvnq.15hyvni98tgev$.dlg@40tude.net.. .[color=blue]
> *** BlueFrog wrote/escribió (Mon, 20 Sep 2004 07:29:00 +0100):[color=green]
>> 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
> --[/color]


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
accessing a value in all the pages timonjue@googlemail.com answers 2 June 6th, 2006 03:35 PM
Cannot use mail() in IE, only works in a debugger--help baustin75@gmail.com answers 8 October 5th, 2005 06:15 PM
session variable problem farooqazeem answers 1 July 22nd, 2005 01:18 AM
Session not available in Include file BlueFrog answers 3 July 17th, 2005 09:41 AM