After PHPsetcookie specifies the domain parameter, set the cookie failure solution in IE

Source: Internet
Author: User
After the setcookie function specifies the domain parameter, the performance in IE is different from that in chrome and firefox. this is not a problem with the phpsetcookie function, which is a problem with IE. The following code generates three cookies in chrome and firefox:
Cookie [one], cookie [two], cookie [three]
In IE, only two cookies, namely [one] and [two], can be generated. The third cookie [three] fails to be generated because ". 65. la" is specified.
Copy codeThe code is as follows:
Setcookie ("cookie [one]", "cookieone", time () + 36000 ,"/");
Setcookie ("cookie [two]", "cookietwo", time () + 36000 ,"/");
Setcookie ("cookie [three]", "cookiethree", time () + 36000, "/", ". 65. la ");
// Repeat the page
If (isset ($ _ COOKIE ["cookie"]) {
Foreach ($ _ COOKIE ["cookie"] as $ name => $ value ){
$ Name = htmlspecialchars ($ name );
$ Value = htmlspecialchars ($ value );
Echo "$ name: $ value
\ N ";
}
}
?>

After many experiments, I confirmed that the domain name parameters in the form of ". 65. la" were not standardized by IE. If you want to use cookies for all subdomain names, you can use global variables.

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.