From 3aa1182a09490f4a2ef1bda022a6f494e0bc2890 Mon Sep 17 00:00:00 2001 From: Syariffullah Date: Thu, 11 Jun 2026 10:19:55 +0700 Subject: [PATCH] feat: initialize database connection script for webgis_poverty API --- api/db_connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/db_connect.php b/api/db_connect.php index a3922ed..a3541d8 100644 --- a/api/db_connect.php +++ b/api/db_connect.php @@ -2,7 +2,7 @@ $host = "localhost"; $user = "root"; $pass = ""; -$db = "webgis"; +$db = "webgis_poverty"; // Coba koneksi ke server dan pilih database $conn = new mysqli($host, $user, $pass, $db);