From 7964a8ba3dd041511c483b7f220b6d14d71ef69e Mon Sep 17 00:00:00 2001 From: Ian C Date: Fri, 22 Jun 2018 12:50:04 +0000 Subject: Initial attempt at data interface. --- www/config.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 www/config.php (limited to 'www/config.php') diff --git a/www/config.php b/www/config.php new file mode 100644 index 0000000..de3c67c --- /dev/null +++ b/www/config.php @@ -0,0 +1,35 @@ +. +*/ + +$config = array(); + +// The name of the database to use +// +$config["dbname"] = "passman"; + +// The username of the database user to use +// +$config["dbuser"] = "passman"; + +// The password of the database user to use +// +$config["dbpassword"] = "PassMan123!"; + +?> -- cgit v1.2.3