11 lines
235 B
PHP
Executable File
11 lines
235 B
PHP
Executable File
<?php
|
|
include('inc/secure.php');
|
|
|
|
// Verbindung herstellen
|
|
$conn = mysqli_connect($host, $user, $password, $dbname);
|
|
|
|
// Verbindung prüfen
|
|
if (!$conn) {
|
|
die("Verbindung zur Datenbank fehlgeschlagen: " . mysqli_connect_error());
|
|
}
|