first WIP implementation

This commit is contained in:
2018-02-10 18:01:42 +01:00
parent b2cc5a0890
commit c1f5f4d451
7 changed files with 356 additions and 0 deletions

7
language.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$lang = "en";
if(isset($_GET['lang'])){
$lang = $_GET['lang'];
}
require_once("lang.".$lang.".php");
?>