mirror of
https://github.com/Anvilcraft/jensmemes
synced 2024-11-12 13:01:30 +01:00
9 lines
195 B
PHP
9 lines
195 B
PHP
<?php
|
|
$con = mysqli_connect("localhost","root","PASSWORT","jensmeme");
|
|
|
|
// Check connection
|
|
if (mysqli_connect_errno())
|
|
{
|
|
echo "Failed to connect to MySQL: " . mysqli_connect_error();
|
|
}
|
|
?>
|