Aggiunto codice

This commit is contained in:
2025-09-10 11:03:25 +02:00
commit d61ef2091b
23 changed files with 2611 additions and 0 deletions

11
htdocs/db.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
$host = "<MYSQL_HOST>";
$user = "<MYSQL_USER>";
$pass = "<MYSQL_PASSWORD>";
$dbname = "school_timetable";
$conn = new mysqli($host, $user, $pass, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>