<?php
// EP Database Configuration Template
// Copy this file to event-server.php and update with your database credentials

$servername = "localhost";
$username = "your_database_username";  // Change this
$password = "your_database_password";  // Change this
$dbname = "el_paraiso";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
mysqli_set_charset($conn, "utf8mb4");

// Check connection
if ($conn->connect_error) {
  die("Connection failed: " . $conn->connect_error);
}

// Optional: Set timezone
// date_default_timezone_set('Europe/Madrid');

?>
