first commit

This commit is contained in:
Emanuele Slusarz
2026-08-22 11:15:29 +02:00
commit ec30fb40b9
38 changed files with 3723 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
$host = "db";
$dbname = "delivery";
$username = "root";
$password = "root";
$pdo = new PDO(
"mysql:host=$host;port=3306;dbname=$dbname;charset=utf8mb4",
$username,
$password
);
$pdo -> setAttribute(
PDO::ATTR_ERRMODE,
PDO::ERRMODE_EXCEPTION
);