diff options
Diffstat (limited to 'central')
| -rw-r--r-- | central/trunk/db.php | 16 | ||||
| -rw-r--r-- | central/trunk/index.php | 7 |
2 files changed, 23 insertions, 0 deletions
| diff --git a/central/trunk/db.php b/central/trunk/db.php new file mode 100644 index 0000000..61d9bc4 --- /dev/null +++ b/central/trunk/db.php | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | /* InstaDisc Server - A Four Island Project */ | ||
| 4 | |||
| 5 | if (!file_exists('config.php')) | ||
| 6 | { | ||
| 7 | header('Location: install.php'); | ||
| 8 | exit; | ||
| 9 | } | ||
| 10 | |||
| 11 | include('config.php'); | ||
| 12 | |||
| 13 | mysql_connect($dbhost, $dbuser, $dbpass); | ||
| 14 | mysql_select_db($dbname); | ||
| 15 | |||
| 16 | ?> | ||
| diff --git a/central/trunk/index.php b/central/trunk/index.php new file mode 100644 index 0000000..31d1af7 --- /dev/null +++ b/central/trunk/index.php | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | /* InstaDisc Server - A Four Island Project */ | ||
| 4 | |||
| 5 | include('db.php'); | ||
| 6 | |||
| 7 | ?> | ||
