Your IP : 216.73.216.39


Current Path : /home/wirbesti/unwaehlbar.ch/
Upload File :
Current File : /home/wirbesti/unwaehlbar.ch/language.php

<?php
    $languages = array('de','fr','it');
    // handle languages selection
    $language = $_GET['lang'] ?? $_SESSION['lang'] ?? 'de';
    if (in_array($language, $languages)) {
       $_SESSION['lang'] = $language;
    }
     // define LANG constant only if it exists in $languages array, otherwise default to EN
     define('LANG', in_array($_SESSION['lang'], $languages) ? $language : 'de');
     try {
        setcookie('lang', $language, ['samesite' => 'Strict','expires' => time() + 86400,]); //it's stored in a cookie so it can be reused
    } catch (\Throwable $e) {
       echo 'could not set cookie '.$e;
       die();
    }
?>