Spaces:
Running
Running
File size: 401 Bytes
efb882e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ```php
<?php
// Database configuration
define('DB_HOST', 'localhost');
define('DB_USER', 'root');
define('DB_PASS', '');
define('DB_NAME', 'eagles_club');
// Create database connection
$conn = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Set charset
$conn->set_charset("utf8mb4");
?>
``` |