diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-06-23 10:00:56 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-06-23 10:00:56 +0000 |
commit | 24ee5485d1bb0c86833977dbfbd2e4999dba8e16 (patch) | |
tree | b428b873939bcd7059291eeaeac07b06eb2ec0fa /central/trunk/includes/common.php | |
parent | c6e3d927c343280bc1fd6d0dfdb64658151e9aac (diff) | |
download | instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.gz instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.tar.bz2 instadisc-24ee5485d1bb0c86833977dbfbd2e4999dba8e16.zip |
Moved over to the Four Island Templating System.
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 | ?> | ||