Initial commit

This commit is contained in:
2026-06-07 19:10:40 +07:00
commit a70150e088
54 changed files with 8967 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
mysqli_report(MYSQLI_REPORT_OFF);
$host = "localhost";
$user = "root";
$pass = "fira123";
$db = "kemiskinan_ibadah";
$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
header('Content-Type: application/json');
die(json_encode([
"status" => "error",
"message" => "Koneksi database gagal",
"detail" => $conn->connect_error
]));
}
$conn->set_charset('utf8mb4');
?>