Files

12 lines
243 B
PHP
Raw Permalink Normal View History

2022-04-13 09:01:16 +02:00
<?php
include "kozos/kapcsolat.php";
try {
$kapcsolat->deleteOne($kapcsolat->getDBC(), 'pizzak', $_GET['id']);
header('location: index.php');
} catch (Exception $exc) {
header("Location: hiba.php?hiba=" . $exc->getMessage());
}