1
0

putting database configuration in config dir

This commit is contained in:
2022-09-09 18:46:09 +02:00
parent 89f68e4aa2
commit b5cf1e1220
2 changed files with 15 additions and 6 deletions

6
config/dbConfig.php Normal file
View File

@ -0,0 +1,6 @@
<?php
$mysqlServer = "127.0.0.1"; // Your production server
$username = "moha";
$passwd = "MysqlMoha";
$database = "moha";
?>