old php won't work with cookie array

This commit is contained in:
Josh North 2021-06-03 09:51:21 -04:00
parent 4fe2774094
commit 62ee48c799
2 changed files with 15 additions and 12 deletions

View File

@ -17,10 +17,12 @@
*/
$app_disp_lang = filter_input(INPUT_POST, 'app_disp_lang', FILTER_SANITIZE_STRING); // GET SANITARY LANG CHOICE
setcookie ( 'app_disp_lang', $app_disp_lang, [
'expires' => time() + 60*60*24*90,
'secure' => false,
'httponly' => false,
'samesite' => 'Lax',
]);
// only works with new php?
// setcookie ( 'app_disp_lang', $app_disp_lang, [
// 'expires' => time() + 60*60*24*90,
// 'secure' => false,
// 'httponly' => false,
// 'samesite' => 'Lax',
//]);
setcookie ( 'app_disp_lang', $app_disp_lang, time() + 60*60*24*90); // SET SITE COOKIE
header('Location: index.php'); // GO HOME UNTIL WE ADD REFERER LOGIC

View File

@ -17,10 +17,11 @@
*/
$site = filter_input(INPUT_POST, 'site', FILTER_SANITIZE_STRING); // GET SANITARY SITE CHOICE
setcookie ( 'app_site', $site, [
'expires' => time() + 60*60*24*90,
'secure' => false,
'httponly' => false,
'samesite' => 'Lax',
]);
//setcookie ( 'app_site', $site, [
// 'expires' => time() + 60*60*24*90,
// 'secure' => false,
// 'httponly' => false,
// 'samesite' => 'Lax',
//]);
setcookie ( 'app_site', $site, time() + 60*60*24*90); // SET SITE COOKIE
header('Location: index.php'); // GO HOME UNTIL WE ADD REFERER LOGIC