﻿﻿??????????????
﻿﻿??????????????
<?php

$sname= "localhost";
$unmae= "xceljsr_db";
$password = "xcel@123#$";
$db_name = "xceljsr_db";

try {
    $pdo = new PDO("mysql:host=$sname;dbname=$db_name", $unmae, $password);
    // Set the PDO error mode to exception
    $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch(PDOException $e) {
    die("ERROR: Could not connect. " . $e->getMessage());
}
unset($sname, $unmae, $password, $db_name);
// Recommendation: Ensure the directory 'assets/bank_scanners' exists in your project root for scanner image uploads in account.php.
// If not, create it with write permissions.
?>
