Файл: forum/them.php
Строк: 75
<?php
require_once '../system/sys.php';
require_once 'ini.php';
$id3 = num($_GET['tema']);
$q4 = mysql_query("SELECT * FROM `forumt` WHERE id = '$id3'");
$tema = mysql_fetch_assoc($q4);
$title = 'Форум / '.$fo['name'].' / '.$tema['name'].'' ;
require_once '../system/head.php';
if(!mysql_num_rows($q4)){
echo '<div class="err">Данной темы не существует</div>';
require_once '../system/foot.php';
}
if($tema['close'] == 0){
if($admin > 1){echo '<div class="menu">';
echo '<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/close">Закрыть тему</a> | ';}}
if($tema['close'] == 1){echo '<div class="menu">';
if($admin > 1){
echo '<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/open">Открыть тему</a> | ';}}
if($tema['up'] == 0){
if($admin > 1){
echo '<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/up">Закрепить тему</a>';}}
if($tema['up'] == 1){
if($admin > 1){
echo '<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/down">Открепить тему</a></div>';}}
echo '</div>';
if(isset($_POST['msga'])){
$realtime = time();
$msg=$_POST['msg'];
if(strlen($msg)<3)$err .= 'Короткое сообщение!<br />';
mysql_query("INSERT INTO forump SET msg = '".my_esc($msg)."', time = '$realtime', user = '$user[id]', tema = '$tema[id]', razdel = '$razdel[id]', forums = '$fo[id]'");
mysql_query("UPDATE forumt SET timenew = '$realtime' WHERE id = '$tema[id]'");
ok('Сообщение успешно добавлено.');
}
echo '<div class="err">';
echo "".icons($tema['user'])." ";
echo "".nick($tema['user'])." ";
echo "".online($tema['user'])." ";
echo ' ('.vtime($tema['time']).') <font color="red">[Авт.]</font><br />';
if($tema['user'] == $user['id'] || $admin > 1){
echo ' [<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'">Изм</a>]';}
if($admin > 2){
echo '[<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/dell">Удал</a>]';}
if($tema['close'] == 0){
if(isset($user)){
if($tema['user'] != $user['id']){
echo '[<a href= "' .URL. '/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/otvets">Ответ</a>]';
}
if($tema['user'] != $user['id']){
echo '[<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/cit">Цит</a>]';
}
}}
echo '</div>';
echo '<div class="menu">';
if(isset($_GET['who'])){
echo output($post['msg'])."";echo '
<br /> <a href="/forum/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'">« Вернуться в тему</a></div>';
require_once '../system/foot.php';
}
echo ' '.output(mb_substr($tema['msg'],0,900)).'';
if(mb_strlen($tema['msg'])>900)echo'<br /><a href="/forum/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/who">» Читать все »</a>';
if($tema['edit']!=NULL)echo '<br /> <br />'.output($tema['edit']).'';
echo '</div>';
if($tema['close'] == 1)echo '<div class="err">Тема закрыта! Вы не можете оставлять коментарии</div>';
$c = mysql_result(mysql_query("SELECT COUNT(id) FROM forump WHERE tema = '$tema[id]' "),0);
if(isset($user)){$str = "$user[str]";}
else{$str="5";}
$k_page = k_page($c,$str);
$page = page($k_page);
$start = $str*$page-$str;
$q8 = mysql_query("SELECT * FROM forump WHERE tema = '$tema[id]' LIMIT $start, $str");
while($post = mysql_fetch_assoc($q8)){
echo ' <div class="main">';
echo "".icons($post['user'])." ";
echo "".nick($post['user'])." ";
echo "".online($post['user'])." ";
echo ' ('.vtime($post['time']).')';
if($post['user'] == $tema['user'])echo ' <font color="red">[Авт.]</font>';
echo '<br />';
if($admin > 1){
echo '[<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/'.$post['id'].'/dlt">Удал</a>]';}
if($post['user'] == !null){
if(isset($user)){
if($admin > 1 || $user['id'] == $post['user']){
echo '[<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/'.$post['id'].'/ed">Изм</a>]';}
if($post['user'] != $user['id']){
echo '[<a href= "'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/'.$post['id'].'/otvet">Ответ</a>]';
}
if($post['user'] != $user['id']){
echo '[<a href="'.URL.'/forum/entry/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/'.$post['id'].'/cita">Цит</a>]';
}
}
}
echo '</div>';
echo '<div class="menu">';
echo output($post['msg'])."n";
if($post['edit']!=NULL)echo '<br /> <br /> '.output($post['edit']).'';
echo '</div>';
}
if($k_page>1)str("/forum/$razdel[id]/$fo[id]/$tema[id]/",$k_page,$page);
$nick = '';
if(isset($_GET['otv'])){
$uza = num($_GET['otv']);
$usr = mysql_fetch_assoc(mysql_query("SELECT nick FROM user WHERE id = '$uza' LIMIT 1"));
$nick = ''.$usr['nick'].', ';
}
if($tema['close'] == 0 && isset($user)){
echo '<div class="err"><a href="/smiles">Смайлы</a>|<a href="/bbcodes">теги</a></div>' ;
echo '<form name="form" method="post" action="/forum/'.$razdel['id'].'/'.$fo['id'].'/'.$tema['id'].'/page=end">';
echo 'Сообщение: <br /> <textarea name="msg">'.$nick.'</textarea><br />';
echo '<input type="submit" name="msga" value="Отправить"> </form></div>';}
echo '<div class="aut"><a href="/forum/">Форум</a> / <a href="/forum/'.$razdel['id'].'/'.$fo['id'].'">'.$fo['name'].'</a> / '.$tema['name'].'</div>';
require_once '../system/foot.php';
?>