How do I delete PHPSESSID on client computers

前端 未结 13 1559
滥情空心
滥情空心 2020-12-30 22:50

UPDATE ON THE PROBLEM:

  • On some browsers, we have two PHPSESSIDs.
  • One PHPSESSID is not set by me anywhere in my script
  • It has
相关标签:
13条回答
  • 2020-12-30 23:43

    You can change the cookie name for your new session using session_name() before session_start() and let the problem solve itself in a few days.

    session_name("SESSION_ID");
    session_start();
    
    0 讨论(0)
提交回复
热议问题