forked from antux18/ChasseTresorPange
30 lines
525 B
PHP
30 lines
525 B
PHP
<?php
|
|
require_once "database.php";
|
|
|
|
$rq_path = "require/";
|
|
|
|
$lg = "fr";
|
|
|
|
if (isset($_GET["lg"])) {
|
|
if (htmlspecialchars($_GET["lg"]) == "en") {
|
|
$lg = "en";
|
|
}
|
|
}
|
|
else {
|
|
if (isset($_COOKIE["language"])) {
|
|
$lg = $_COOKIE["language"];
|
|
}
|
|
}
|
|
|
|
setcookie(
|
|
"language",
|
|
$lg,
|
|
time() + (365 * 24 * 60 * 60),
|
|
"/",
|
|
"",
|
|
false,
|
|
false
|
|
);
|
|
|
|
require_once __DIR__ . "/locales/" . $lg . ".php";
|
|
?>
|