boka3/index.php
2018-07-04 11:27:24 +02:00

13 lines
245 B
PHP
Executable File

<?php
require_once('./include.php'); // provides $db, $translations
header('Content-Type: text/html; charset=UTF-8');
$lang = 'sv';
if(isset($_GET['lang'])) {
$lang = $_GET['lang'];
}
print format_page($lang, 'TEST', 'TESTING TITLE');
?>