Файл: pages/spam.php
Строк: 18
<?
include('../core/core.php');
include(MAINDIR.'style/head.php');
title('Спам на сообщение');
echo'<div class="title">Спам на сообщение</div>';
$id = abs(intval($_GET['id']));
switch ($mode):
case 'index':
break;
case 'forum':
echo'<div class="menu">';
$spam = DB::run() -> queryFetch("SELECT * FROM `forum_topic` WHERE `id`=?",array($id));
$text = '<strong>Спам на форуме</strong><br />'.$spam['message'].'';
DB::run()->query("INSERT INTO `spam`(`spam`,`login`,`data`) VALUES (?,?,?)",array($text,check($_COOKIE['login']),times()));
header ('location: /?mode=index');
echo'</div>';
break;
default:
header ('location: ?mode=index');
endswitch;
include(MAINDIR.'style/foot.php');
?>