5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-25 02:38:51 +02:00
jensmemes/website/dbcon.php

15 lines
402 B
PHP
Raw Normal View History

2020-07-21 23:07:16 +02:00
<?php
$SQLHost = "db.a-hoefler.eu";
$SQLUser = "root";
2020-07-22 15:21:26 +02:00
$SQLPasswort = "bqCdUHZYgHeTd583kZ3cMVd9";
2020-07-21 23:07:16 +02:00
$SQLDatenbank = "jensmemes";
$con = mysqli_connect($SQLHost, $SQLUser, $SQLPasswort, $SQLDatenbank);
// Check connection
if (mysqli_connect_errno())
{
echo "<b style='color: #9c4b4b; text-decoration: underline;'>Failed to connect to <i >" .$SQLHost."</i> </b> :: " . mysqli_connect_error();
}
?>