Add locale, en_US, DJ and Database functions.

This commit is contained in:
Cody Cook 2024-04-29 21:16:49 -07:00
commit 5fe1a21b8e
7 changed files with 440 additions and 8 deletions

View file

@ -7,6 +7,6 @@ class Database extends mysqli
public function __construct($config)
{
// call the parent constructor with the config file
parent::__construct($config['database']['host'], $config['database']['username'], $config['database']['password'], $config['database']['database'], $config['database']['port'] ?? 3306);
parent::__construct($config['database']['host'], $config['database']['user'], $config['database']['pass'], $config['database']['db'], $config['database']['port'] ?? 3306);
}
}