Upload of the files

Added the already existing files to the repository
This commit is contained in:
foin137
2020-03-27 19:57:00 +01:00
parent 2f6b16e4f0
commit de1a653a5c
7 changed files with 4613 additions and 0 deletions

21
includes.example.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
$id = "id"; // Ihre ID zum MySQL Server
$pw = "pw"; // Passwort zum MySQL Server
$host = "localhost"; // Host ("localhost" oder "IP-Adresse")
$db = "werwolf"; // Name Ihrer Datenbank
$mysqli = new MySQLi(
$host,
$id,
$pw,
$db
);
if (mysqli_connect_errno()) {
/*printf(
"Can't connect to MySQL Server. Errorcode: %s\n",
mysqli_connect_error()
);*/
exit;
}
?>