Delete 'assets/php/config.php'

This commit is contained in:
bprieshof
2019-08-17 22:25:57 +02:00
parent 0d26090074
commit 121f3ef09f

View File

@@ -1,16 +0,0 @@
<?php
/* Database credentials. Assuming you are running MySQL
server with default setting (user 'root' with no password) */
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'devbprieshof_sysd');
define('DB_PASSWORD', 'o1X4FzEuGV');
define('DB_NAME', 'devbprieshof_sysd');
/* 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());
}
?>