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
sgd/ysqld/ysql07d/kap1/1_2_ausnahmebehandlung_pdo.php
T

12 lines
178 B
PHP

<?php
try {
$pdo = new PDO('mysql:dbname=kursverwaltung;host=localhost','root','' );
} catch (PDOException $e) {
die("Es ist ein Fehler aufgetreten!");
}
?>