View file uncos/list_delete.php

File size: 1.21Kb
<?php
/*
=============================================
Движок:  SHCMS Engine
=============================================
Название файла: даление комментарий
=============================================
Official website: http://shcms.ru
=============================================
*/
define('SHCMS', true);
include_once'../system/inc/basic_settings.php';
$shcmsengine['title'] = 'Удаление новостей'; 
include_once'../template/head.php';
registrat();
$adminka ->admin();



    $list = mysql_query("DELETE FROM `uncos`");
	mysql_query("TRUNCATE TABLE  `uncos_comment`");
    mysql_query("TRUNCATE TABLE  `uncos`");
	mysql_query("TRUNCATE TABLE  `uncos_comment`");
        if($list == true) {
            messag('Все новости и комментарии успешно удалены');
            header('Refresh: 1; url=index.php');
            include_once'../template/foot.php';
            exit();
        }else {
            messag('Ошибка удаление новостей и комментариё');
            header('Refresh: 1; url=index.php');
            include_once'../template/foot.php';
            exit();
        }
include_once'../template/foot.php';