aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/10 DB Verbindumg/02 Muster_PDO/include/db.inc.php

12 lines
142 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
try
{
$dbconnection = new PDO($dsn, $user, $password);
} catch(PDOException $e)
{
die('Verbindungsfehler: '.$e->getMessage());
}
?>