Session value in include

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • BlueFrog

    #1

    Session value in include

    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


  • Alvaro G Vicario

    #2
    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
    --

    Comment

    • BlueFrog

      #3
      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@telecomp uteronline.com> wrote in
      message news:1qez4kvdfy vnq.15hyvni98tg ev$.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]


      Comment

      Working...