Vorbereitung Version 2

This commit is contained in:
2026-05-05 08:28:50 +00:00
parent 88b46ecc06
commit 0556dec11d
12 changed files with 522 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
$dbuser = 'root';
$dbpw = 'Feuerwehr1!';
$dbhost = 'localhost';
$dbname = 'sozialesnetzwerk';
try {
$pdo = new PDO ("mysql:dbname=$dbname;host=$dbhost", $dbuser, $dbpw);
} catch (PDOException $e) {
die ($e->getMessage());
}
?>