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/>.
|
|
|
|
*/
|
|
|
|
|
2021-05-28 15:31:54 -04:00
|
|
|
$site = filter_input(INPUT_POST, 'site', FILTER_SANITIZE_STRING); // GET SANITARY SITE CHOICE
|
2021-10-15 22:31:52 -04:00
|
|
|
setcookie ( 'app_site', $site, [
|
|
|
|
'expires' => time() + 60*60*24*90,
|
2021-10-18 10:38:41 -04:00
|
|
|
'secure' => true,
|
|
|
|
'httponly' => true,
|
2021-10-15 22:31:52 -04:00
|
|
|
'samesite' => 'Strict',
|
|
|
|
]);
|
|
|
|
//setcookie ( 'app_site', $site, 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
|