change db user/pass

This commit is contained in:
s0dy
2019-02-25 10:43:45 +01:00
parent 15ec447587
commit c3de69cddc
2 changed files with 5 additions and 5 deletions

View File

@ -13,8 +13,8 @@ function endsWith($haystack, $needle) {
function connect() {
$host = "localhost";
$db = "blog";
$user = "root";
$pass = "root";
$user = "blog";
$pass = "blog";
$charset="utf8mb4";
$dsn = "mysql:host=$host;dbname=$db;charset=$charset";