Просмотр файла waplend/forum/tema.php

Размер файла: 3.53Kb
<?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."&amp;tema=".$tema."'>".$arr['text']."</a></b></div></div></div>";

 if (!empty($_SESSION['login']))
{  echo "<div>+<a href='post.php?forum=".$forum."&amp;tema=".$tema."&amp;page=".intval($_GET['page'])."'>Ответить</a></div>";}  
$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 "<div>Всего страниц: <a href='tema.php?forum=".$forum."&amp;tema=".$tema."&amp;page=".ceil($count/10)."'>".ceil($count/10)."</a>";
    echo "</div>";
echo "<div>";
if ($count>10 )
	{
		if ($page<ceil($count/10))
		{
	$next=$page+1;
	print "<a href='tema.php?forum=".$forum."&amp;tema=".$tema."&amp;page=".$next."'>Далее</a> ";
		}
	}
	$prev=$page-1;
	if ($prev!=0)
	{print "<a href='tema.php?forum=".$forum."&amp;tema=".$tema."&amp;page=".$prev."'>Назад</a>";}
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']."&amp;forum=".$forum."&amp;tema=".$tema."&amp;page=".$page."'>Ред.</a>]</div>";}
	}

	}

	
}
echo "<div>";
if ($count>10 )
	{
		if ($page<ceil($count/10))
		{
	$next=$page+1;
	print "<a href='?forum=$forum&amp;tema=$tema&amp;page=".$next."'>Далее</a> ";
		}
	}
	$prev=$page-1;
	if ($prev!=0)
	{print "<a href='?forum=$forum&amp;tema=$tema&amp;page=".$prev."'>Назад</a>";}
echo "</div>";

   if (!empty($_SESSION['login']))
{   echo "<div>+<a href='post.php?forum=".$forum."&amp;tema=".$tema."&amp;page=".intval($_GET['page'])."'>Ответить</a></div>";  }
   
   }
echo "<div>&#8594; <a href='forum.php?forum=".$forum."&amp;page=".intval($_GET['page'])."' >Темы</a><br/>&#8594; <a href='index.php' >Форумы</a></div>";
	
require ("../foot.php"); 
	?>