First commit

This commit is contained in:
2026-06-09 19:02:22 +07:00
commit c2c0774b3b
36 changed files with 10493 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
// Test 1: localhost
$c1 = @new mysqli('localhost', 'root', '', 'webgis_p3');
echo "localhost: " . ($c1->connect_error ? "GAGAL - ".$c1->connect_error : "OK") . "<br>";
// Test 2: 127.0.0.1
$c2 = @new mysqli('127.0.0.1', 'root', '', 'webgis_p3');
echo "127.0.0.1: " . ($c2->connect_error ? "GAGAL - ".$c2->connect_error : "OK") . "<br>";
phpinfo();
?>