summaryrefslogtreecommitdiff
path: root/conf.php
diff options
context:
space:
mode:
authorCamil Staps2017-02-07 14:08:22 +0100
committerCamil Staps2017-02-07 14:08:22 +0100
commit6c225f4d477bb55c367ffb48175fdb085e8128ef (patch)
tree01073c4b578cacb4c359b90d3516e60b0cd2b839 /conf.php
parentInitial commit (diff)
Dockerise
Diffstat (limited to 'conf.php')
-rw-r--r--conf.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/conf.php b/conf.php
deleted file mode 100644
index 5765a11..0000000
--- a/conf.php
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-define('DB_HOST', 'localhost');
-define('DB_NAME', 'clpm');
-define('DB_USER', 'clpm');
-define('DB_PASS', 'password');
-
-$db = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME);
-if (mysqli_connect_errno())
- die('Connection to the database failed.');