|
|
|
if ($REQUEST_URI == "/en/default.html" || $REQUEST_URI == "/en/") {
$file_index = "db/index.txt";
if (!file_exists($file_index)) {
$pagecontent = "Error loading content";
} else {
$fp = fopen($file_index, "r");
$fp2 = fread($fp, filesize($file_index));
fclose($fp);
$pagecontent = $fp2;
}
echo "$pagecontent";
}
?>
|
if ($REQUEST_URI == "/en/default.html" || $REQUEST_URI == "/en/") {
$file_box2 = "db/index-box2.txt";
if (!file_exists($file_box2)) {
$boxcontent2 = " Error loading extended content";
} else {
$b2p = fopen($file_box2, "r");
$b2p2 = fread($b2p, filesize($file_box2));
fclose($b2p);
$boxcontent2 = $b2p2;
}
echo "$boxcontent2";
}
?>
|
 |
|
|
|