File size: 3.24Kb
<?php
include ("../head.php");
include ("../tools.php");
$str = $_GET["str"];
if (empty($str) or $str<=0)
{
$str="1";
}
$forum=hacker($_GET["forum"]);
$tema=hacker($_GET["tema"]);
$forum=htmlspecialchars(stripslashes(trim($forum)));
$tema=htmlspecialchars(stripslashes(trim($tema)));
$news = mysql_query("select * from `forum` where type='tema' and idtema='".$tema."' and idforum='".$forum."';");
$massivnews = mysql_fetch_array($news);
$nme = mysql_num_rows($news);
$page=hacker($_GET['page']);
if ($page<=0)
{$page=1;}
if ($nme!=1){
$forum="0";
$tema="0"; }
else
{
$q = mysql_query("select * from `forum` where type='tema' and idforum='".intval($forum)."' and idtema='".intval($tema)."';");
$arr = mysql_fetch_array($q);
if ($arr[zavis]=="1")
{echo "<div>Тема ещё не прошла модерацию</div>";
require ("../foot.php");
exit;}
echo "<div class='contur_rek'>
<div class='header_rek'><div style='text-align:center'><b><a href='tema.php?forum=".$forum."&tema=".$tema."'>".$arr['text']."</a></b></div></div></div>";
if (!empty($_SESSION['login']))
{ echo "<div class='contur'><div class='header'><a href='post.php?forum=".$forum."&tema=".$tema."&page=".intval($_GET['page'])."'>● Ответить</a><br/>";}
$q = mysql_query("select * from `forum` where type='mess' and idforum='".intval($forum)."' and idtema='".intval($tema)."' order by time;");
$count = mysql_num_rows($q);
echo "Всего страниц: <a href='tema.php?forum=".$forum."&tema=".$tema."&page=".ceil($count/10)."'>".ceil($count/10)."</a>";
echo "</div></div>";
echo "<div>";
while($arr = mysql_fetch_array($q)) {
++$i;
if ($i<=$page*10 && $i>=($page-1)*10)
{
$az= mysql_query("select * from `users` where login='".$arr[author]."';");
$array = mysql_fetch_array($az);
$red="";
if (!empty($arr['timered']))
{
$red=" (Редактировалось:".date("H:i(d/m/Y)",$arr['timered']).")";
}
echo "<div class='contur'><div class='header'> ".$i.". <a href='../showuser.php?user=".$array[id]."'>".$arr['author']."</a> ".date("H:i (d/m/y)",$arr[time])."</div><div>".str_replace($sm1,$sm2,$arr['text'])."".$red."</div></div>";
if (intval($arr['time']+300)>time())
{
if (trim($_SESSION['login'])==trim($arr['author']))
{echo "<div>[<a href='editmessage.php?id=".$arr['id']."&forum=".$forum."&tema=".$tema."&page=".$page."'>Ред.</a>]</div>";}
}
}
}
echo "<div>";
if ($count>10 )
{
if ($page<ceil($count/10))
{
$next=$page+1;
print "<a href='?forum=$forum&tema=$tema&page=".$next."'>Далее</a> ";
}
}
$prev=$page-1;
if ($prev!=0)
{print "<a href='?forum=$forum&tema=$tema&page=".$prev."'>Назад</a>";}
echo "</div>";
if (!empty($_SESSION['login']))
{ echo "<div class='contur'><div class='header'><a href='post.php?forum=".$forum."&tema=".$tema."&page=".intval($_GET['page'])."'>● Ответить</a><br/>"; }
}
echo "<a href='forum.php?forum=".$forum."&page=".intval($_GET['page'])."' >→ Темы</a><br/><a href='index.php' >→ Форумы</a></div></div>";
require ("../foot.php");
?>