Размер файла: 2.39Kb
<?php
echo '<span class="stroka2">/'.$echo[0].'</span><hr>';
if (filesize('forum/'.$dir.'/'.$tema.'.txt') == 0)
{
echo '
<span class="error">
В теме нет сообщений.
</span>
';
}
else
{
$file = @file('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('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 '
<table
style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="text-align: left; vertical-align: top;"><span class="mess1"><div align="left">'.$fn[2].'</div><div align="right"><a class="user_name" href="/?page=anketa&log_in='.trim($fn[0]).'">'.$fn[0].'</a></div></span> <span class="mess2">
<br>
'.$fn[1].'
<br>
<br>
</span>
';
$mess1 = $fn[1];
$mess1 = str_replace('<br>',' ',$mess1);
include('flud/anti_y.php');
$tag_v = $mess1;
echo'
<span class="mess2">
<a href="javascript:%20x()" onclick="Tag(\'text\',\''.trim($fn[0]).' сказал:[quote]'.$tag_v.'\',\'[/quote] \');">Цитировать</a>
<a href="javascript:%20x()" onclick="Tag(\'text\',\'[b]'.trim($fn[0]).'\',\'[/b] \');">Ответить</a>
</span>
</td>
</tr>
</tbody>
</table>
<br>
';
}
}
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>';
}
?>