diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-14 21:17:30 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-09-01 11:51:41 +0200 |
commit | 3457a490dc8c9d92d23c540964a4e2d965c1c464 (patch) | |
tree | fe777114964cc607021762ec4a3502a12c919c37 /html/includes/config.php | |
parent | 7e5c50603cbe1307d68a2b5b8ee14409e15a9dcb (diff) |
Fix passing too few function arguments errors
Diffstat (limited to 'html/includes/config.php')
-rwxr-xr-x | html/includes/config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/html/includes/config.php b/html/includes/config.php index 2e5a8e1..d489552 100755 --- a/html/includes/config.php +++ b/html/includes/config.php @@ -1,9 +1,9 @@ <?php
// Database connection details
-$dbname = "";
-$hostname = "";
-$uname = "";
+$dbname = "utstats";
+$hostname = "localhost";
+$uname = "root";
$upass = "";
// The key needed to run the import script
|