This commit is contained in:
Adrien
2019-02-25 09:14:37 +01:00
parent 757d9a4e0b
commit a001a7c14c
4 changed files with 62 additions and 9 deletions

View File

@ -4,10 +4,10 @@ ini_set('display_errors', 1);
require_once "assets/php/functions.php";
$host = "127.0.0.1";
$host = "localhost";
$db = "blog";
$user = "root";
$pass = "root";
$user = "blog";
$pass = "blog";
$charset="utf8mb4";
$dsn = "mysql:host=$host;dbname=$db;charset=$charset";