File "conn.php"
Full Path: /home/scheduling/public_html/include/conn.php
File size: 377 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$host = 'localhost'; // or your database host
$dbname = 'scheduling_classroom_reservation';
$username = 'scheduling';
$password = '&xO,yUr5Z_4jBc3D';
// Create a connection to the database
$conn = new mysqli($host, $username, $password, $dbname);
// Check the connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}