Files
werwolfonline.eu/includes.example.php
foin137 de1a653a5c Upload of the files
Added the already existing files to the repository
2020-03-27 19:57:00 +01:00

21 lines
489 B
PHP

<?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;
}
?>