Files
php/dolgozat/20220316/srcf2/delete.php

11 lines
203 B
PHP
Raw Normal View History

2022-04-07 14:54:21 +02:00
<?php
include "kapcsolat.php";
try{
deleteOne($dbc, 'pizzak', $_GET['id']);
header('location: f2.php');
}catch(Exception $exc){
header("Location: hiba.php?hiba=" . $exc->getMessage());
}
?>