mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 01:09:35 +05:30
implemented basic project timeline and sidebar
This commit is contained in:
14
htdocs/core/connection.php
Normal file
14
htdocs/core/connection.php
Normal 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 "";
|
||||
?>
|
||||
Reference in New Issue
Block a user