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

install.php hinzugefügt/sql Dump entfernt

This commit is contained in:
JannikKoester
2020-08-18 09:53:19 +02:00
parent cef01bf0ef
commit 23b3cccc28
4 changed files with 153 additions and 45 deletions

View File

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