mirror of
https://github.com/Rushilwiz/newbooksnetwork.git
synced 2025-04-08 06:20:16 -04:00
12 lines
244 B
PHP
12 lines
244 B
PHP
<?php
|
|
|
|
$servername = "localhost";
|
|
$dbUsername = "root";
|
|
$dbPass = "";
|
|
$dbName = "host.newbooksnetwork";
|
|
|
|
$conn = mysqli_connect($servername, $dbUsername, $dbPass, $dbName);
|
|
|
|
if (!$conn) {
|
|
die("Connection failed " + mysqli_connect_error);
|
|
} |