first commit
This commit is contained in:
16
assets/php/config.php
Normal file
16
assets/php/config.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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());
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user