config datei für datenbank

This commit is contained in:
Göran Heinemann 2020-03-28 18:58:19 +01:00
parent 122791914f
commit d26a07a01b
1 changed files with 6 additions and 0 deletions

6
config.php Normal file
View File

@ -0,0 +1,6 @@
<?php
$dbuser = "";
$dbpass = "";
$dbname = "fitness";
$dbhost = "localhost";
$pdo = new PDO('mysql:host='.$dbhost.';dbname='.$dbname, $dbuser, $dbpass);