Файл: obmen/message.php
Строк: 129
<?
include_once('../apahe/ini.php');
$obmen_f = mysql_fetch_assoc(mysql_query("SELECT * FROM `obmen-f` WHERE `id` = '".int($_GET['id'])."'"));
$urlup='/obmen/index';
$inc['title'] = 'Обменник - '.$obmen_f['file'].'.'.$obmen_f['type'].' - комментарии';
include_once('../apahe/top.php');
if (!isset($apache)){
header ('location: /input.dll');
exit;
}
if (!$obmen_f){
header ('location: /obmen/index.dll');
exit;
}
$obmen_s = mysql_fetch_assoc(mysql_query("SELECT * FROM `obmen-s` WHERE `id` = '1'"));
$obmen = mysql_fetch_assoc(mysql_query("SELECT * FROM `obmen` WHERE `id` = '".int($obmen_f['id-obmen'])."'"));
$obmen_p = mysql_fetch_assoc(mysql_query("SELECT * FROM `obmen-p` WHERE `id` = '".int($obmen_f['id-obmen-p'])."'"));
if (isset($_POST['post-new-ok'])){
$message = txt($_POST['message']);
if (empty($message)) $err .= 'Не введёно сообщение.</br>';
if (!empty($message) && (strlen($message) < 2 || strlen($message) > 1024)) $err .= 'Неверная длина сообщения.</br>';
if (!isset($err)){
mysql_query("INSERT INTO `obmen-m` SET `id-obmen` = '".int($obmen['id'])."', `id-obmen-p` = '".int($obmen_p['id'])."', `id-obmen-f` = '".int($obmen_f['id'])."', `id-apache` = '".int($apache['id'])."', `message` = '$message', `date` = '".time()."'");
mysql_query("UPDATE `apache` SET `rub` = `rub`+1 WHERE `id` = '".int($apache['id'])."'");
header('Location: /obmen/message.php?id='.int($obmen_f['id']).'&page=end');
}}
error($err);
echo '<div class="main-text">';
echo '<a href="index.dll" title="Обменник">Обменник</a> | ';
echo '<a href="folder-'.int($obmen['id']).'.dll" title="'.$obmen['name'].'">'.$obmen['name'].'</a> | ';
echo '<a href="subfolder-'.int($obmen_p['id']).'.dll" title="'.$obmen_p['name'].'">'.$obmen_p['name'].'</a> | ';
echo '<a href="file-'.int($obmen_f['id']).'.dll" title="'.$obmen_f['file'].'.'.$obmen_f['type'].'">'.$obmen_f['file'].'.'.$obmen_f['type'].'</a>';
echo '</div>';
echo '<a class="main-href" href="message-'.int($obmen_f['id']).'.dll" title="Обновить">';
icons('refresh');
echo 'Обновить</a>';
echo '<div class="main-href"><form method="post" action="message.php?id='.int($obmen_f['id']).'?">';
echo 'Сообщение: <a href="/module/infomation.php?selest=smiles" title="Список смайлов">Смайлы</a> | ';
echo '<a href="/module/infomation.php?selest=bb-code" title="Список ББ-кодов">ББ-коды</a></br>';
echo '<textarea placeholder="Мах 1024 символов" name="message" maxlength="1024"></textarea></br>';
echo '<input type="submit" name="post-new-ok" title="Написать" value="Написать">';
echo '</form></div>';
$total = mysql_result(mysql_query("SELECT COUNT(*) FROM `obmen-m` WHERE `id-obmen-f` = '".int($obmen_f['id'])."'"), 0);
nav_start($total, $obmen_s[tm]);
if ($total != 0){
$obmen_m_c = mysql_query("SELECT * FROM `obmen-m` WHERE `id-obmen-f` = '".int($obmen_f['id'])."' ORDER BY `date` LIMIT $start, $obmen_s[tm]");
while ($obmen_m = mysql_fetch_assoc($obmen_m_c)){
echo '<div class="main-href">';
echo '<table width="100%" cellspacing="0" cellpadding="0">';
echo '<tr><td class="apa-l">';
echo '<a href="/id'.int($obmen_m['id-apache']).'" title="'.name($obmen_m['id-apache']).'">';
echo ''.apache($obmen_m['id-apache']).''.name($obmen_m['id-apache']).'</a>'.status($obmen_m['id-apache']).'';
echo '</td>';
echo '<td class="apa-r">';
echo '<time>'.vtime($obmen_m['date']).'</time>';
echo '</td></tr>';
echo '</table>';
echo ''.out($obmen_m['message']).'</br>';
if ($apache['level']>=1)echo '<a href="post-'.int($obmen_m['id']).'.dll" title="Редактировать пост">[Ред]</a>';
if ($apache['id']!=$obmen_m['id-apache'])echo ' <a href="post-'.int($obmen_m['id']).'.dll?selest=otvet" title="Ответить">[Отв]</a>';
if ($apache['level']>=1)echo ' <a href="post-'.int($obmen_m['id']).'.dll?selest=delete" title="Удал">[Удал]</a>';
echo '</div>';
}}else{
error('Комментарии еще ни кто не оставлял.');
}
view_nav('/obmen/message-'.int($obmen_m['id']).'.dll');
include_once('../apahe/bottom.php');
?>