set_charset('utf8mb4'); return $conn; } catch (mysqli_sql_exception $e) { http_response_code(500); header('Content-Type: application/json'); echo json_encode([ 'status' => 'error', 'message' => 'Koneksi database gagal', 'error_detail' => $e->getMessage() // Detail error ini akan muncul di tab Network ]); exit; } }