0
0

first version of the website, it works as intended.

This commit is contained in:
Bryan Pedini
2019-01-26 23:34:48 +01:00
parent 37fbd490fd
commit 9888403935
9 changed files with 407 additions and 0 deletions

11
config.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
$config = [
'db' => [
'host' => '127.0.0.1',
'port' => 3306,
'username' => 'database_user',
'password' => 'database_password',
'name' => 'my_database_name',
],
];
?>