Snippets tagged “samesite”
3 snippets use this tag.
- How to fix "set SameSite cookie to none" warning?PHP
To fix the "set SameSite cookie to none" warning in PHP, you will need to specify the SameSite attribute when you set the cookie.
- PHP Sessions across subdomainsPHP
PHP sessions can be shared across subdomains by setting the session cookie's domain to the top-level domain.
- PHP setcookie "SameSite=Strict"?PHP
The "SameSite=Strict" attribute is a security feature that can be added to a cookie when using the PHP setcookie() function.