I have never used SESSI for the temporary processing method that the session cannot be automatically removed.

Source: Internet
Author: User

Temporary handling methods for sessions that cannot be automatically removed
The problem is:
"The PHP session will keep the information entered when the user enters for the first time, even if you return to the login screen and log on again, it will not change! I found in php4.02 that this problem still failed in the latest php 4.03pl1 test! Session content can be eliminated only when the ie browser is closed and the IE window is re-opened.
Temporary solution:
After the form is submitted, do not enter the variable submitted by the Registry ticket. Assign the variable to another variable $ X and register $ X. Then, return to the login screen and log on again to change the variable. you can delete the variable $ X at the top of the login page.
Example: This section is part of my chat room login
1 login page transfer $ name, $ pass
2 login. php.
<?
$ Save_name = $ name;
$ Save_pass = $ pass;
Session_start ();
Session_register ("name ");
Session_register ("pass ");
$ Name = $ save_name;
$ Pass = $ save_pass;
......
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.