This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

11 lines
312 B
PHP

<?php
try {
$pdo = new PDO ( 'mysql:dbname=kursverwaltung;host=localhost;charset=utf8', 'root', 'Feuerwehr1!' );
//$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
//$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
} catch ( PDOException $e ) {
die ( $e->getMessage () );
}
?>