Файл: profiwm.pp.ua/support_coms.php
Строк: 62
<?php
require 'system/sid.php';
require 'system/config.php';
include 'system/user.php';
include 'system/head.php';
include 'system/navigator.php';
whorm(0, 'support');
$uid = my_int($_GET['uid']);
$empty = mysql_query("SELECT `id` FROM `support` WHERE `id` = '$uid' LIMIT 1");
if (mysql_num_rows($empty) == FALSE) {
err('Ошибка!');
include_once 'foot.php';
exit();
}
echo $div_title . 'Комментарии' . $div_end;
if (isset($_GET['x'])) {
$x = my_int($_GET['x']);
$uid = my_int($_GET['uid']);
$t = mysql_query("SELECT `id` FROM `support_coms` WHERE `id` = '$x' LIMIT 1");
if ($user['level'] < 2) {
header('Location: c-support-' . $uid);
} elseif (mysql_num_rows($t) == FALSE) {
header('Location: c-support-' . $uid);
} else {
mysql_query("DELETE FROM `support_coms` WHERE `id` = '$x' LIMIT 1");
header('Location: c-support-' . $uid);
}
}
$num = mysql_result(mysql_query("SELECT COUNT(id) FROM `support_coms` WHERE `uid` = '$uid'"), 0);
if ($num != FALSE) {
$n = new navigator($num, 10, 'c-support-' . $uid);
$view = mysql_query("SELECT * FROM `support_coms` WHERE `uid` = '$uid' ORDER BY `id` DESC {$n->limit}");
$i = 0;
while($a = mysql_fetch_assoc($view)) {
if ($user['level'] >= 2 && $user['level'] <= 5) {
$d = '<a href="d-csupport-'.$uid.'-'.$a['id'].'"><img src="ico/delete.png" alt=""/></a> ';
}
$otv = ' <a href="answ-su-'.$uid.'-'.$a['user'].'#down">[отв]</a>';
echo ($i ++ % 2) ? $div_tworazdel : $div_razdel;
echo $d . us($a['user']) . $otv . '<br/>(' . itime($a['date'], 0) . ')<br/>' . smiles(bb_code($a['mes'])) . $div_end;
}
echo $n->navi();
} else {
echo 'Комментариев нет.' . $block;
}
if (isset($_POST['ok'])) {
$mes = trim(mysql_real_escape_string(check($_POST['mes'])));
$uid = my_int($_GET['uid']);
$pr = mysql_query("SELECT `id` FROM `support` WHERE `id` = '$uid' LIMIT 1");
if (empty($mes)) {
err('Пустой комментарий!');
} elseif (mysql_num_rows($pr) == FALSE) {
header('Location: c-support-' . $uid);
} else {
// транслит
if ($user['translit'] == 1) {
$mes = trun_to_rus($mes);
}
// антимат
$ant = mysql_fetch_array(mysql_query("SELECT `antimat` FROM `setting` WHERE `ids` = '1'"));
$mes = ($ant[0] == 1) ? mat($mes) : $mes;
// Антиреклама
$_ant = mysql_fetch_assoc(mysql_query("SELECT `on_rekl`, `text_rekl` FROM `setting` WHERE `ids` = '1'"));
if ($_ant['on_rekl'] == 1 && filesize($_SERVER['DOCUMENT_ROOT'] . '/domains.dat') > 0) {
$ex = explode(',', file_get_contents('domains.dat'));
foreach($ex as $value) {
if ($user['level'] != 4 && $user['level'] != 5 && !preg_match('/[url=http://(.*)[/url]/si', $mes)) {
$mes = preg_replace("/(ws|,|.|*|_|-|+)+$value/si", $_ant['text_rekl'], $mes);
}
}
}
// Оповещание последнему постеру
$lst = mysql_fetch_assoc(mysql_query("SELECT `user` FROM `support_coms` WHERE
`uid` = '$uid'
ORDER BY `id` DESC LIMIT 1"));
if ($user['id'] != $lst['user']) {
$message = 'Оставлено сообщение в <a href="c-support-'.$uid.'">саппорте</a>.';
mysql_query("INSERT INTO `lenta` SET
`user` = '$lst[user]',
`text` = '$message',
`type` = 'comments',
`date` = '" . time() . "',
`read` = '1'");
}
mysql_query("INSERT INTO `support_coms` SET `user` = '$user[id]', `date` = '" . time() . "', `uid` = '$uid', `mes` = '$mes'");
header('Location: c-support-' . $uid);
}
}
$Komu = (isset($_GET['k'])) ? '[b]Ответ: ' . user_inf(my_int($_GET['k']), 'user') . '[/b], ' : '';
echo '<a name="down"></a>
<FORM method="POST" action="c-support-'.$uid.'">
<label><b>Комментарий:</b></label>
<br/>
<textarea name="mes" cols="50" rows="5"style="width: 99%;">' . $Komu . '</textarea>
<br/>
<input type="submit" name="ok" value="Оставить"/>
</FORM>';
include 'system/foot.php';
?>