This commit is contained in:
2022-04-07 14:54:21 +02:00
commit 044ec5f379
55 changed files with 1220 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
include "kapcsolat.php";
try{
deleteOne($dbc, 'pizzak', $_GET['id']);
header('location: f2.php');
}catch(Exception $exc){
header("Location: hiba.php?hiba=" . $exc->getMessage());
}
?>