Files
scummvm-web/credits.php
2016-04-09 15:11:14 +02:00

30 lines
436 B
PHP

<?php
/*
* Credits Page for ScummVM
*
*/
// set this for position of this file relative
$file_root = ".";
// load libraries
require($file_root."/include/"."incl.php");
// start of html
html_header("ScummVM :: Credits");
sidebar_start();
//display welcome table
echo html_round_frame_start("Credits","");
include $file_root."/credits.inc";
echo html_round_frame_end("&nbsp;");
// end of html
sidebar_end();
html_footer();
?>