This commit is contained in:
2026-06-11 14:15:13 +07:00
parent e5eb3a4762
commit d9de907f51
3 changed files with 29 additions and 20 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$conn = new mysqli(
"localhost",
"root",
"",
"sig_pontianak"
);
if ($conn->connect_error) {
die("ERROR MYSQL: " . $conn->connect_error);
}
echo "KONEKSI BERHASIL";