Initial Commit

This commit is contained in:
ldy
2025-06-06 17:31:03 +08:00
parent 787a7b5741
commit 66cd489ea8
244 changed files with 13574 additions and 0 deletions

15
indexes/ConnectDB.php Normal file
View 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";
?>