Fix campo password in _db_config.php per funzionare su MAMP

(meglio così non c'è neanche una password)
This commit is contained in:
2026-03-31 09:42:55 +02:00
parent b14e09af6d
commit 1cb277d22f
+1 -1
View File
@@ -1,7 +1,7 @@
<?php <?php
$host = "localhost"; $host = "localhost";
$user = "root"; $user = "root";
$pass = "root"; $pass = "";
$db = "aeroporto"; $db = "aeroporto";
$conn = mysqli_connect($host, $user, $pass, $db); $conn = mysqli_connect($host, $user, $pass, $db);