File "db.php"
Full Path: /home/analogde/www/00000/P1/includes/db.php
File size: 260 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "construction_pms_db";
$conn = mysqli_connect($servername, $username, $password, $dbname);
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
?>