diff options
Diffstat (limited to 'central/trunk/includes/common.php')
-rw-r--r-- | central/trunk/includes/common.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/central/trunk/includes/common.php b/central/trunk/includes/common.php new file mode 100644 index 0000000..39a7ed2 --- /dev/null +++ b/central/trunk/includes/common.php | |||
@@ -0,0 +1,14 @@ | |||
1 | <?php | ||
2 | |||
3 | /* InstaDisc Server - A Four Island Project */ | ||
4 | |||
5 | include('includes/db.php'); | ||
6 | |||
7 | $getconfig = "SELECT * FROM config"; | ||
8 | $getconfig2 = mysql_query($getconfig); | ||
9 | $config = mysql_fetch_array($getconfig2); | ||
10 | |||
11 | include('includes/template.php'); | ||
12 | include('includes/header.php'); | ||
13 | |||
14 | ?> | ||