1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 03:29:35 +05:30

(refactor): secured database credentials from public access

This commit is contained in:
2023-12-02 23:25:10 +05:30
parent 5884e58b07
commit a53143f74c
2 changed files with 10 additions and 5 deletions

7
db_info.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
//Database info - (for loclhost)
$hostname = "localhost";
$username = "root";
$password = "";
$database = "neosubhamoy";
?>