1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-08 05:54:20 +01:00
Files
Tischverwaltung/settings.php
2020-08-19 11:33:26 +03:00

15 lines
286 B
PHP

<?php
$servername = "localhost";
$username = "root";
$password = "";
$db = "calender";
// Create connection
$conn = new mysqli($servername, $username, $password,$db);
// Check connection
if ($conn->connect_error) {
header("location:install.php");
}
?>