Hi alls, please help me to complete the change by switching the language in the menu.PHP Code:<?php
if(!isset($_GET['lang'])) {
$_GET['lang'] = ""; }
if ($_GET['lang'] == "") {
include("GameEngine/Lang/en.php"); }
if ($_GET['lang'] == "en") {
include("GameEngine/Lang/en.php"); }
if ($_GET['lang'] == "cz") {
include("GameEngine/Lang/cz.php"); }
?>
With this code.Click on the menu icon = change in the language game. Someone help me?

