Upload files to "/"

This commit is contained in:
2026-06-05 03:08:55 +00:00
commit afcd403620
5 changed files with 1961 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
$host = 'localhost';
$user = 'root';
$password = '';
$database = 'webgis_kemiskinan';
$conn = new mysqli($host, $user, $password, $database);
if ($conn->connect_error) {
die(json_encode([
'status' => 'error',
'msg' => 'Koneksi database gagal: ' . $conn->connect_error
]));
}
$conn->set_charset("utf8");