Add sample mysql_credentials.php

This commit is contained in:
Ceda EI 2018-07-21 22:45:12 +05:30
parent 4872666d8e
commit 33f09bc011
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
return array(
"servername" => "localhost",
"username" => "username_goes_here",
"password" => "password_goes_here",
"database" => "database_name_goes_here"
);
?>