Web Analytics Made Easy -
StatCounter multiple sessioms - CodingForum

Announcement

Collapse
No announcement yet.

multiple sessioms

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • multiple sessioms

    Is there a way to have multiple sessions without generating a header information error? Any help would be appreciated
    Matt Sartain
    Internet Solutions Developer
    - Zonecom Communications

  • #2
    Why do you ask? What would be the use of that? It completely is the oposit of what the sessionID is meant to be : an single unique id for the client-server relation.

    And i don't think it is possible anyway, since this would completely undermine the php-sessionmanagement.

    If you realy need something like that, then you need to do your own sessionmanagemen.
    Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html

    Comment


    • #3
      The day you get the header error is the day you create sessions after anything is put to the browser. You can have 10 billion sessions created if you want

      Comment


      • #4
        You can have 10 billion sessions created if you want
        How ??
        Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html

        Comment


        • #5
          $_SESSION['one'] = "blah";
          $_SESSION['two'] = "blahdeblah";
          etc

          that's what I meant

          Comment


          • #6
            I see, you were refering to session-variables. I thought Mattys067 was talking about 'instances of the session-object' so the client-specific session-variable-collection with a unique sessionID.
            Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html

            Comment

            Working...
            X