different session for multiple tab browser

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • huangkai31@gmail.com

    different session for multiple tab browser

    Thanks for reading.
    I need to solve a problem. In my php code, I need to let user login as
    another lower level user account. However, in firefox, if it's opening
    in multiple tab, the session keeps into the tab.
    How could I solve this problem by force different session values for
    multiple tab browser?

    Regards,
    Kevin

  • iulian.ilea

    #2
    Re: different session for multiple tab browser


    huangkai31@gmai l.com wrote:
    Thanks for reading.
    I need to solve a problem. In my php code, I need to let user login as
    another lower level user account. However, in firefox, if it's opening
    in multiple tab, the session keeps into the tab.
    How could I solve this problem by force different session values for
    multiple tab browser?
    >
    Regards,
    Kevin
    Try to send it by request ($_GET)

    Comment

    • huangkai31@gmail.com

      #3
      Re: different session for multiple tab browser

      Is there any way attach the session id automatically on every links?
      like JSP doing jsession?

      iulian.ilea wrote:
      huangkai31@gmai l.com wrote:
      Thanks for reading.
      I need to solve a problem. In my php code, I need to let user login as
      another lower level user account. However, in firefox, if it's opening
      in multiple tab, the session keeps into the tab.
      How could I solve this problem by force different session values for
      multiple tab browser?

      Regards,
      Kevin
      >
      Try to send it by request ($_GET)

      Comment

      • iulian.ilea

        #4
        Re: different session for multiple tab browser


        huangkai31@gmai l.com wrote:
        Is there any way attach the session id automatically on every links?
        like JSP doing jsession?
        >
        iulian.ilea wrote:
        huangkai31@gmai l.com wrote:
        Thanks for reading.
        I need to solve a problem. In my php code, I need to let user login as
        another lower level user account. However, in firefox, if it's opening
        in multiple tab, the session keeps into the tab.
        How could I solve this problem by force different session values for
        multiple tab browser?
        >
        Regards,
        Kevin
        Try to send it by request ($_GET)
        Try to set session.use_coo kies = 0 in php.ini. If this not works (I
        never used sessionID in address bar) try to look in php.net manual at
        sessions (http://ro2.php.net/manual/ro/ref.session.php).

        Comment

        Working...