initial commit

This commit is contained in:
Borgal
2025-08-08 22:15:51 +02:00
commit 03fde990ca
10 changed files with 386 additions and 0 deletions

10
inc/db.php Executable file
View File

@@ -0,0 +1,10 @@
<?php
include('inc/secure.php');
// Verbindung herstellen
$conn = mysqli_connect($host, $user, $password, $dbname);
// Verbindung prüfen
if (!$conn) {
die("Verbindung zur Datenbank fehlgeschlagen: " . mysqli_connect_error());
}