Initial Commit
This commit is contained in:
15
indexes/ConnectDB.php
Normal file
15
indexes/ConnectDB.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$servername = "localhost";
|
||||
$username = "roamease";
|
||||
$password = "fHWaAJ54BimD4z7x";
|
||||
$db = "roamease";
|
||||
|
||||
// Create connection
|
||||
$conn = new mysqli($servername, $username, $password, $db);
|
||||
|
||||
// Check connection
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
// echo "Connected successfully";
|
||||
?>
|
||||
Reference in New Issue
Block a user