1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 20:33:06 +05:30

implemented basic project timeline and sidebar

This commit is contained in:
2023-10-25 00:25:55 +05:30
parent f3c930f912
commit d49fa4c91f
8 changed files with 271 additions and 48 deletions

View File

@@ -0,0 +1,14 @@
<?php
//Connect with Database
$hostname = "localhost";
$username = "root";
$password = "";
$database = "neosubhamoy";
$conn = new mysqli($hostname, $username, $password, $database);
if ($conn -> connect_error) {
die("Database Connection Failed !" . $conn->connect_error);
}
echo "";
?>