<?php
include('/path/to/choose_lang.php');
if (
$chosenlang == "en") {
        include 
'page.en';
}
else {
        include 
'page.ja';
}
?>