1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php /* InstaDisc Server - A Four Island Project */ include('includes/common.php'); $template = new FITemplate('index'); $template->add('TITLE', $config['title']); $template->add('TEXT', $config['text']); $template->display(); include('includes/footer.php'); ?>