", $contents); //Split English and Japanese $contents = ($_GET["lang"]=="ja" && count($contents)>1) ? $contents[1] : $contents[0]; //Select Language // Format HTML Data // $html = file_get_contents("template/index.html"); //Common HTML Temaplate $html = str_replace("", $contents, $html); //Swap Contents $html = str_replace("", "?page=".$_GET["page"], $html); //Language Link Page Modification $html = str_replace("", $_GET["lang"], $html); //Page Link Language Modification print($html); ?>