Aggiunta file configurazione DB

This commit is contained in:
2026-03-31 09:29:24 +02:00
parent cc63ff573c
commit c319ce8d33
+12
View File
@@ -0,0 +1,12 @@
<?php
$host = "localhost";
$user = "root";
$pass = "root";
$db = "aeroporto";
$conn = mysqli_connect($host, $user, $pass, $db);
if (!$conn) {
die("Connessione fallita: " . mysqli_connect_error());
}
?>