Considerations when using session in php for customer verification

Source: Internet
Author: User
: This article mainly introduces considerations for using session in php for customer verification. if you are interested in the PHP Tutorial, please refer to it. If your php. in ini, register_globals = On, all post, get, cookie, and session variables with the same name will be mixed together, you can use $ HTTP _ * _ VARS ["username"] to determine the variable you want.

However, even if the name is the same. in ini, variables_order = "GPCS" will also be determined based on the priority level. values with low levels cannot be washed out. therefore, it is wise to use session_register ("username") at the beginning. you can also use session_is_registered to determine whether the variable has been registered.

The following is an example:
If (! Session_is_registered ("username ")){
$ User_name = "";
Session_register ("username ");
}
At the same time, make sure that in your php. ini, variables_order = "GPCS" (default) S indicates that the session should be placed at the end, and the session should be preemptible.

Register_globals = On is a waste of system resources and is disabled in the optimization configuration. This avoids the so-called vulnerability.


The above describes the considerations for using session in php for customer verification, including session and customer verification, and hopes to help friends who are interested in PHP tutorials.

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.