LobbySIO/changelang.php

29 lines
1.3 KiB
PHP
Raw Normal View History

2018-10-15 15:14:36 -04:00
<?php
/*
2021-06-12 09:29:10 -04:00
* Copyright (C) 2018 josh.north@point808.com
2018-10-15 15:14:36 -04:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$app_disp_lang = filter_input(INPUT_POST, 'app_disp_lang', FILTER_SANITIZE_FULL_SPECIAL_CHARS); // GET SANITARY LANG CHOICE
2021-06-03 09:51:21 -04:00
// only works with new php?
setcookie ( 'app_disp_lang', $app_disp_lang, [
'expires' => time() + 60*60*24*90,
2021-10-18 10:38:41 -04:00
'secure' => true,
'httponly' => true,
'samesite' => 'Strict',
]);
//setcookie ( 'app_disp_lang', $app_disp_lang, time() + 60*60*24*90); // SET SITE COOKIE
2018-10-15 15:14:36 -04:00
header('Location: index.php'); // GO HOME UNTIL WE ADD REFERER LOGIC