File size: 2.26Kb
<?php
define('_WBLIB',1);
require_once ('../inc/core.php');
if ($level < 1) {exit('Доступ закрыт');}
// Заголовки
$title = 'Удаление комментария';
require_once ('../inc/head.php');
#################################
$act = isset($_GET['act']) ? $_GET['act'] : '';
if ($act == 'all') {
$req = mysql_query("SELECT * FROM `article` WHERE `id` = '$id' AND `type` = '2' LIMIT 1");
if (!mysql_num_rows($req)) {
exit('Статья не найдена');
require_once ('../inc/foot.php');
exit();
}
$res = mysql_fetch_assoc($req);
if (isset($_GET['yes'])) {
$result = mysql_query("DELETE FROM `comm` WHERE `id_article` = '$id'");
if ($result) header("Location: $home/comm.php?id=".$id."");
else exit('<div class="error">Ошибка удаления всех комментариев . Код ошибки :'.mysql_error().'</div>');
}
else {
echo '<div class="link"><div class="error">Вы действительно хотите кдалить все комментарии к данной статье ?<br /> <a href="del_comm.php?act=all&id=' . $id . '&yes">Удалить</a> | <a href="/comm.php?id=' .$id. '">Отмена</a></div></div>';
}
}
else {
$req = mysql_query("SELECT * FROM `comm` WHERE `id` = '$id' LIMIT 1");
if (!mysql_num_rows($req)) {
exit('Комментарий не найден');
require_once ('../inc/foot.php');
exit();
}
$res = mysql_fetch_assoc($req);
if (isset($_GET['yes'])) {
$result = mysql_query("DELETE FROM `comm` WHERE `id` = '$id'");
if ($result) header("Location: $home/comm.php?id=".$res['id_article']."");
else exit('<div class="error">Ошибка удаления комментария . Код ошибки :'.mysql_error().'</div>');
}
else {
echo '<div class="link"><div class="error">Вы действительно хотите удалить комментарий ?<br /> <a href="del_comm.php?id=' . $id . '&yes">Удалить</a> | <a href="/comm.php?id=' .$res['id_article']. '">Отмена</a></div></div>';
}
}
echo '<div class="func"><a href="/index.php">Главная</a></div>';
require_once ('../inc/foot.php');
?>