first WIP implementation
This commit is contained in:
7
language.php
Normal file
7
language.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
$lang = "en";
|
||||
if(isset($_GET['lang'])){
|
||||
$lang = $_GET['lang'];
|
||||
}
|
||||
require_once("lang.".$lang.".php");
|
||||
?>
|
||||
Reference in New Issue
Block a user