mirror of
https://github.com/JannikKoester/Tischverwaltung.git
synced 2026-01-08 05:54:20 +01:00
15 lines
286 B
PHP
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");
|
|
}
|
|
|
|
?>
|