Simple use of session and Cookie in PHP

Source: Internet
Author: User
Most of the time, we need to track the activities of the visitors throughout the site, automatic or semi-automated identification of their identity (that is, often said the site landing and other functions), we often use cookies and session to track and judge. Session information is stored on the server side, but the session ID is stored in the client cookie, of course, the PHP session storage method is diversified, so that even if the cookie is disabled can be tracked. A cookie is a mechanism for storing data on a remote browser to track and identify users. Cookies are completely kept on the client side such as: IE Firefox will no longer be available when the client prohibits cookies.
Cookie Simple example:
 "; echo "Username:". $_cookie[' id '). "
"; echo "Password:". $_cookie[' password '). "
"; echo "Logout cookie"; }?>session Simple example: "; echo "Username:". $_session[' id '). "
"; echo "Password:". $_session[' password '). "
"; echo "Logout session"; }?>
  • 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.