librarySoftware/db/bootstrap.php
2025-09-25 17:35:18 +02:00

12 lines
No EOL
303 B
PHP

<?php
$dbhost = "localhost";
$dbname = "library";
$dbuser = "root";
$dbpw = "";
try{
$pdo = new PDO("mysql:host=$dbhost; dbname=$dbname; charset=utf8", $dbuser, $dbpw);
}catch(PDOException $e){
die("Connection failed: " . $e->getMessage());
}
?>