Файл: ad-min/del_category.php
Строк: 10
<?php
require_once "../sys/func.php";
if (!isset($_SESSION['ad_min'])) {
header('Location: ../index.php');
exit;
}
if (empty($_GET['id'])) exit('Нет ID');
$id = filter(intval($_GET['id']));
$title = 'Удалить категорию';
require_once "../sys/head.php";
if (isset($_GET['del'])) {
$success = delCat($id);
if ($success) echo $success;
}else echo err('Точно хотите удалить категорию? <br/> <a href="category.php">Нет</a> | <a href="?id='.$id.'&del">Да</a>');
echo '<div class="c"><a href="category.php"><img src="/images/arr_b.png" /> Назад</a></div>';
require_once "../sys/foot.php";
?>