1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-09 22:30:08 +01:00
This commit is contained in:
JannikKoester
2020-08-14 16:55:35 +02:00
parent d76627ef2d
commit dd8bdd6ce4
10 changed files with 2042 additions and 0 deletions

16
settings.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$servername = "localhost";
$username = "root";
$password = "";
$db = "calender";
// Create connection
$conn = new mysqli($servername, $username, $password,$db);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>