Files
scummvm-web/faq.php
T
Eugene Sandulenko e388aee8d1 OLDWEB: More fixes
2016-04-09 15:11:23 +02:00

36 lines
612 B
PHP

<?php
/*
* FAQ Page
*
*/
// set this for position of this file relative
$file_root = ".";
// load libraries
require($file_root."/include/"."incl.php");
// start of html
html_header("ScummVM :: FAQ", '<link href="faq.css" rel="stylesheet" type="text/css">');
sidebar_start();
//display welcome table
echo html_round_frame_start("FAQ :: Frequently Asked Questions","");
?>
<h1>
FAQ<br>
<span class="caption">last updated: <?php echo date("F d, Y",getlastmod()); ?></span>
</h1>
<?php
include $file_root."/faq.inc";
echo html_round_frame_end("&nbsp;");
// end of html
sidebar_end();
html_footer();
?>