Просмотр файла mod/forum/log/read_post.php

Размер файла: 2.47Kb
<?php
echo 'В теме ';
readfile("mod/forum/tem/".$t_t_t."count.txt");
echo ' сообщений';

if ($_GET['act_ch'] == "del_post")
include("mod/forum/log/del_post.php");
elseif ($_GET['act_ch'] == "red_post")
include("mod/forum/log/red_post.php");


/* читаем файл в массив */
$file=@file("mod/forum/tem/".$t_t_t."post.txt");

/* считаем кол-во строк */
$count=count($file);

/* максимальное кол-во строк на  странице*/
$max="25";

/* делим общее кол-во строк на максимальное
округляем в большую сторону и тем самым получаем
общее число страниц */
$pages=ceil($count/$max);

/* вводим переменную, указывающую номер страницы */
if(isset($_GET["p"])){$p=$_GET["p"];}
else{$p="1";}

/* вводим переменные для навигации */
$first_str=($p*$max)-$max ;
$last_str=($p*$max)-1;

for($i=$first_str;$i<=$last_str;$i++)
{
  if(@$file[$i])
  {
  $post_read = explode("|",$file[$i]);
   echo '
    <table style="text-align: left; width: 100%; height: 25px;"
     border="0" cellpadding="0" cellspacing="0">
      <tbody>
        <tr>
          <td style="width: 15%; background-color:#D2FFD2"><a href="/?pg=anketa.php&log1='.$post_read[0].'.php">'.$post_read[0].'</a><br><small>'.$post_read[1].'</small><br><small><a href="/?pg=pisma.php&v_p_name='.$post_read[0].'">Написать</a></small></td>
          <td style="width: 75%; background-color:#B3FFB3"><small>'.$post_read[2].'</small></td>
          <td style="width: 10%; background-color:#FFFFD9"><a href="javascript:%20x()" onclick="DoSmile(\'mess\',\'[b][red]'.$post_read[0].'[/color][/b] \');">Отв</a></td>
         </tr>
      </tbody>
    </table>
       ';
        if ($_SESSION['status'] == 3)
       {
       echo '
       <table style="text-align: right; width: 100%;" border="1"
       cellpadding="0" cellspacing="0">
       <tbody>
       <tr>
       <td> <a href="/?pg='.$pg.'&act_ch=del_post&lines='.$i.'&t_t_t='.$t_t_t.'&in_tem=1">Удалить</a> | <a href="/?pg='.$pg.'&act_ch=red_post&lines='.$i.'&t_t_t='.$t_t_t.'&in_tem=1">Редактировать</a> </td>
       </tr>
       </tbody>
       </table>

            ';
       };
       echo '<br>';
  }
}

/* страницы */
print "<br><br>Страницы: ";
for($u=1;$u<=$pages;$u++)
{
  if($p!=$u){print '<a href="/?pg='.$pg.'&t_t_t='.$t_t_t.'&in_tem=1&p='.$u.'">'.$u.'</a> ';}
  elseif($p==$u){print "<b>$u</b> ";}
}
if ($_SESSION['is_name'] != "")
{
include("mod/forum/log/add_post.php");
if ($_POST['add_post_ok'] == "1")
include("mod/forum/log/save_post.php");


}
?>