Файл: forumm/new_cmpl_them_ok.php
Строк: 7
<?
if($user['do_cmpl']==1)
{
$type=$_POST[reason];
$msg_cmpl=$_POST[msg_cmpl];
if(strlen2($msg_cmpl)<1)
{
$err='';
echo "<div class='err'>Введите сообщение</div>n";
}
if(strlen2($msg_cmpl)>1024)
{
$err='';
echo "<div class='err'>Сообщение слишком длинное</div>n";
}
$msg_cmpl=my_esc($msg_cmpl);
if(!isset($err))
{
mysql_query("INSERT INTO `forum_them_cmpl` (`type`, `id_them`, `msg`, `time`, `ok`, `id_user`) values ('$type', '$forum[id]', '$msg_cmpl', '$time', '0', '$user[id]')");
header("location: /forumm/?id=$forum[id]");
}
}
else echo "Вам запрещено отсылать жалобы администацией сайта";
?>