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

Размер файла: 2.17Kb
<?php
if ($_SESSION['is_name'] != "")
{
echo "<form name=\"\" action=\"\" method=\"post\">
<input name=\"add_tema\" type=\"hidden\" value=\"yes\">
<input type=\"submit\" value=\"Новая тема\">
</form><br>";
if ($_POST['add_tema'] == "yes")
include("mod/forum/log/add_tem.php");
elseif($_POST['pokas'] == "2")
include("mod/forum/log/save_tem.php");
}
/* читаем файл в массив */
$file=@file("mod/forum/rasd/$t_t_t.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%;\" border=\"1\"cellpadding=\"0\" cellspacing=\"0\">
  <tbody>
    <tr>
      <td style=\"background-color: FFFFB3\"><a href=\"/?pg=$pg&t_t_t=$post_read[1]&in_tem=1\">$post_read[0]</a> [".file_get_contents("mod/forum/tem/".$post_read[1]."count.txt")."] <small> (Cоздал: $post_read[2]) </small></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_tem&lines='.$i.'&t_t_t='.$t_t_t.'&tema_del='.$post_read[1].'">Удалить</a> | <a href="/?pg='.$pg.'&act_ch=red_tem&lines='.$i.'&t_t_t='.$t_t_t.'">Редактировать</a> </td>
       </tr>
       </tbody>
       </table>

            ';

  }
  echo '<br>';
  }
}

/* страницы */
print "<br><br>Страницы: ";
for($u=1;$u<=$pages;$u++)
{
  if($p!=$u){print "<a href='index.php?p=$u'>$u</a> ";}
  elseif($p==$u){print "<b>$u</b> ";}
}
if ($_GET['act_ch'] == "del_tem")
include("mod/forum/log/del_tem.php");
elseif ($_GET['act_ch'] == "red_tem")
include("mod/forum/log/red_tem.php");
?>