First Commit

This commit is contained in:
2026-06-09 13:50:00 +07:00
commit bb501dcd8b
12 changed files with 2557 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
$host = "localhost";
$user = "root";
$pass = "";
$db = "spbu_pontianak";
$conn = mysqli_connect($host, $user, $pass, $db);
if (!$conn) {
die("Koneksi gagal: " . mysqli_connect_error());
}
?>