[go: up one dir, main page]

Menu

[r1]: / index.php  Maximize  Restore  History

Download this file

33 lines (25 with data), 1.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/*********************************************************************/
/* MineCobalt - Minecraft SMP Web Administration */
/* Copyright (c) 2011, Mark Randall @ MineCobalt */
/* All rights reserved. */
/*********************************************************************/
/* Please read licence.txt */
/*********************************************************************/
/* Pagename: index.php */
/* Purpose: Main website homepage */
/*********************************************************************/
session_start();
require(".settings/siteconfig.php");
require(".classes/mysql.php");
$sql = new mysql_connection($config['mysql']['username'], $config['mysql']['password'], $config['mysql']['hostname'], $config['mysql']['port'], $config['mysql']['database']);
require(".classes/bukkit.php");
require(".classes/smarty.php");
require(".settings/pageoptions.php");
$smarty->assign("navigation",site_navigation());
$smarty->assign('meta', '');
$smarty->assign('javascript', '');
$smarty->assign('css', '');
$smarty->assign('title', 'Index');
$smarty->display('page_index.tpl');
?>