diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-06-11 17:09:30 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-06-11 17:09:30 +0200 |
commit | 3a31cebd1d39a6bcec2c22cbced60ca9d6177a42 (patch) | |
tree | 3cce86da26c408841e69bdee4e2ba012e0c72e47 /default-conf/var_www_includes/config_db.php | |
parent | ebecae2ccc37c8930245a562852c035d5ce8d5a1 (diff) | |
parent | 80a1a65aefcd2f33951dc60c72d29df1ad19b187 (diff) |
merge special_includes_camp
Diffstat (limited to 'default-conf/var_www_includes/config_db.php')
-rw-r--r--[-rwxr-xr-x] | default-conf/var_www_includes/config_db.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/default-conf/var_www_includes/config_db.php b/default-conf/var_www_includes/config_db.php index d959be90..d07529c0 100755..100644 --- a/default-conf/var_www_includes/config_db.php +++ b/default-conf/var_www_includes/config_db.php @@ -1,6 +1,9 @@ <?php -include("funktion_db.php"); -$con = mysql_connect("localhost", "root", "changeme") or die ("connection failed"); -$sel = mysql_select_db("tabel") or die (mysql_error()); + +// MySQL-Connection Settings +$config['host'] = "localhost"; +$config['user'] = "root"; +$config['pw'] = ""; +$config['db'] = "engelsystem"; ?> |