Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-viewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bieling <john.bieling@gmx.de>2016-03-02 00:31:51 +0300
committerJohn Bieling <john.bieling@gmx.de>2016-03-02 00:31:51 +0300
commit32b77176f756b808c638088f166716188ed4046c (patch)
tree200a15ab679cb3f811d46790ad8dcc303d2af402
parent3dc854bd38a8b68350c2e758365382101fb56417 (diff)
Moving DB config out of main php.
-rw-r--r--config.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.php b/config.php
new file mode 100644
index 0000000..7fc5b1b
--- /dev/null
+++ b/config.php
@@ -0,0 +1,8 @@
+<?php
+
+$dbhost="localhost";
+$dbname="dmarc";
+$dbuser="dmarc";
+$dbpass="xxx";
+
+?>