You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
PHP
13 lines
364 B
PHP
<?php
|
|
if ($_sprache != ""){
|
|
$sys_sprache = $_sprache;
|
|
setcookie($sys_projektname."Sprache",$sys_sprache,time()+ 40000000,"/");
|
|
}
|
|
else if( !$_COOKIE[$sys_projektname."Sprache" ] ){
|
|
$sys_sprache = "deu";
|
|
setcookie($sys_projektname."Sprache",$sys_sprache,time()+ 40000000,"/");
|
|
}
|
|
else {
|
|
$sys_sprache = $_COOKIE[$sys_projektname."Sprache"];
|
|
}
|
|
?>
|