Файл: admin/delete_news.php
Строк: 14
<?
////////////////////////////////////////
///// Основа ApiCMS //////
///// Автор биллинга - IvanDanilov /////
///// ICQ 936545, mail: KyberID@ya.ru //
////////////////////////////////////////
/////////////////////////////////////////
$title = 'Удаление новости сайта';
require_once '../api_core/apicms_system.php';
require_once '../api_core/head.php';
/////////////////////////////////////////
if ($user['level'] != 1) header('location: index.php');
if ($user['level'] == 1 or $user['level'] == 2){
if (isset($_GET['id']) && $user['level']==1 && mysql_result(mysql_query("SELECT COUNT(*) FROM `news` WHERE `id` = '".intval($_GET['id'])."'"),0)==1){
$post=mysql_fetch_assoc(mysql_query("SELECT * FROM `news` WHERE `id` = '".intval($_GET['id'])."' LIMIT 1"));
mysql_query("DELETE FROM `news` WHERE `id` = '$post[id]'");
header("Location: add_news.php");
}
}
//////////////////////////////////////////
?>