fix env
This commit is contained in:
@@ -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";
|
||||
Reference in New Issue
Block a user