getting database configuration into an external file

This commit is contained in:
2018-11-29 19:10:14 -05:00
parent 5098802adb
commit 3be3ca40df
3 changed files with 19 additions and 5 deletions

8
dbconf.php.sample.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
return array (
'servername' => 'localhost',
'username' => 'username',
'password' => 'password',
'dbname' => 'database'
);
?>