mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-19 23:59:35 +05:30
14 lines
300 B
PHP
14 lines
300 B
PHP
<?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 "";
|
|
?>
|