mirror of https://github.com/n7tae/new-xlxd.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
424 B
16 lines
424 B
<?php
|
|
/* Database credentials. Assuming you are running MySQL */
|
|
define('DB_SERVER', 'localhost');
|
|
define('DB_USERNAME', 'qnusers');
|
|
define('DB_PASSWORD', 'qnuser!20');
|
|
define('DB_NAME', 'qnusers');
|
|
|
|
/* Attempt to connect to MySQL database */
|
|
$link = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME);
|
|
|
|
// Check connection
|
|
if($link === false){
|
|
die("ERROR: Could not connect. " . mysqli_connect_error());
|
|
}
|
|
?>
|