Размер файла: 2.46Kb
<?php
echo '<span class="stroka2">/'.$echo[0].'</span><hr>';
if (filesize($cms.'forum/'.$dir.'/'.$tema.'.txt') == 0)
{
echo '
<div class="error">
В теме нет сообщений.
</div>
';
}
else
{
$file = @file($cms.'forum/'.$dir.'/'.$tema.'.txt');
$count = count($file);
$max = $cgf_ind_post;
$pages = ceil($count/$max);
if(isset($_GET["p"])){$p=$_GET["p"];}
else{$p=$pages;}
$first_str=($p*$max)-$max ;
$last_str=($p*$max)-1;
for($i=$first_str;$i<=$last_str;$i++)
{
if(@$file[$i])
{
$fn = explode("|",$file[$i]);
if (is_file($cms.'moder/'.$_SESSION['user_login'].'.txt'))
{
echo '<div class="as" align="right">
<a href="/?page=forum&stat=moder&id=p_del&kat='.$_GET['kat'].'&tema='.$_GET['tema'].'&l_p='.$i.'&p='.$pages.'&line='.$line.'">Удалить</a>
<a href="/?page=forum&stat=moder&id=p_red&kat='.$_GET['kat'].'&tema='.$_GET['tema'].'&l_p='.$i.'&p='.$pages.'&line='.$line.'">Редактировать</a>
</div>';
}
echo '
<!--//Ниже данные юзера//-->
<!--//<img src="'.file_get_contents($cms.'user/'.trim($fn[0]).'/avatar.txt').'" width="100" alt="'.trim($fn[0]).'" border="0">//-->
';
echo '
<!--//Выше данные юзера//-->
<!--//Ниже таблица сообщения//-->
<div class="mess1"><div align="right">'.$fn[2].' <br> <a class="user_name" href="/?page=anketa&log_in='.trim($fn[0]).'">'.$fn[0].'</a>';
if (is_file($cms.'onl/user/'.trim($fn[0]).'.txt'))
{
echo ' - <font style="color:#FFFFFF; background-color:#008040;">на сайте</font><br>';
}
echo '</div>';
echo '</div> <div class="mess2">
<br>
'.$fn[1].'
<br>
<br>
</div>
';
$mess1 = $fn[1];
$mess1 = str_replace('<br>',' ',$mess1);
include($cms.'flud/anti_y.php');
$tag_v = $mess1;
echo'
<!--//Выше таблица сообщения//-->
<hr>
';
}
}
echo '<div align="right">';
print "Страницы: ";
for($u=1;$u<=$pages;$u++)
{
if ($line == 0)
{
$intogor = (count($file1));
}
else
{
$intogor = (count($file1)+1);
}
if($p!=$u){print '<a href="/?page='.$_GET['page'].'&stat='.$_GET['stat'].'&kat='.$dir.'&tema='.$tema.'&line='.$intogor.'&p='.$u.'">'.$u.'</a> ';}
elseif($p==$u){print "<b>$u</b> ";}
}
echo '</div>';
}
?>