aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Database.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Database.php')
-rw-r--r--core/namespace/Database.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/namespace/Database.php b/core/namespace/Database.php
new file mode 100644
index 0000000..ae233f4
--- /dev/null
+++ b/core/namespace/Database.php
@@ -0,0 +1,7 @@
+<?php
+class Database extends \PDO {
+ public function __construct($hostname, $basename, $username, $password) {
+ parent::__construct("mysql:host={$hostname};dbname={$basename};charset=utf8mb4;", $username, $password);
+ }
+}
+?> \ No newline at end of file