Update PHP connection files and tables for merged uas_06 database

This commit is contained in:
Nama Kamu
2026-06-11 18:43:35 +07:00
parent 4c1f601647
commit 9a66562dc7
12 changed files with 15 additions and 19 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
$host = getenv('DB_HOST') ?: 'db';
$user = getenv('DB_USER') ?: 'root';
$pass = getenv('DB_PASSWORD') ?: 'rootpassword';
$db = '02_kerusakan';
$db = getenv('DB_NAME') ?: 'uas_06';
$conn = @mysqli_connect($host, $user, $pass, $db);