<?php
// Set up the database connection
$dsn = 'mysql:host=localhost;dbname=GERLANJR'; // my_guitar_shop2';
$username = 'gerlanjr'; // mgs_user';
$password = 'Temppw123'; // pa55word';
$options = array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION);

try {
    $db = new PDO($dsn, $username, $password, $options);
} catch (PDOException $e) {
    $error_message = $e->getMessage();
    include('errors/db_error_connect.php');
    exit();
}
?> 