Files
tugas-kuliah-SIG/webgis_pontianak/koneksi.php
T
Wilhelmus Ikchan Dwi Putra c8e75593cb Upload semua tugas SIG
2026-06-13 00:45:23 +07:00

12 lines
302 B
PHP

<?php
$host = "localhost";
$user = "root"; // Sesuaikan dengan username DB kamu
$pass = ""; // Sesuaikan dengan password DB kamu
$db = "db_webgis";
$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
die("Koneksi database gagal: " . $conn->connect_error);
}
?>