about summary refs log tree commit diff stats
path: root/central/trunk/db.php
blob: 61d9bc402f15c161617dbfb96531ad6d1ed2fd9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/* InstaDisc Server - A Four Island Project */

if (!file_exists('config.php'))
{
	header('Location: install.php');
	exit;
}

include('config.php');

mysql_connect($dbhost, $dbuser, $dbpass);
mysql_select_db($dbname);

?>