-
Notifications
You must be signed in to change notification settings - Fork 824
Open
Description
From manual page: https://php.net/function.setcookie
This works :
$cookie_options = array('expires' => $max_expiration, 'path' => '/', 'domain' => '', 'secure' => false, 'httponly' => false);
setcookie("Sondage01", $cookie_value_string, $cookie_options);
This doesn't work :
$cookie_options = array('expires' => $max_expiration, 'path' => '/', 'domain' => '', 'secure' => false, 'httponly' => false, 'samesite' => 'None');
setcookie("Sondage01", $cookie_value_string, $cookie_options);
Test page here : https://pastebin.com/5Bu8G225
Uncomment line 5 to make it work again.
Metadata
Metadata
Assignees
Labels
No labels