. */ $app_disp_lang = filter_input(INPUT_POST, 'app_disp_lang', FILTER_SANITIZE_FULL_SPECIAL_CHARS); // GET SANITARY LANG CHOICE // only works with new php? setcookie ( 'app_disp_lang', $app_disp_lang, [ 'expires' => time() + 60*60*24*90, 'secure' => true, 'httponly' => true, 'samesite' => 'Strict', ]); //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