1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-09 22:30:08 +01:00

newdesign

This commit is contained in:
JannikKoester
2020-08-17 16:41:58 +02:00
parent 102ba709d3
commit de8f5295ab
26 changed files with 2674 additions and 255 deletions

View File

@@ -1,16 +0,0 @@
<?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);
}
?>