dbconfig template

This commit is contained in:
Göran Heinemann 2020-03-04 23:22:06 +01:00
parent 7ee046c178
commit 9567453ff9
1 changed files with 6 additions and 0 deletions

6
config.php Normal file
View File

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