Просмотр файла modile/forum/moder/del_tem_forum.php

Размер файла: 676B
<?php
$file1 = @file('forum/'.$dir.'/nametem.txt');
$count = count($file1);
$rep1 = explode('|',$file1[$line]);

     $st = 0;
     $fp = fopen('forum/'.$dir.'/nametem.txt',"w");//очищаем файл
     for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
     {
      if($i!=$line)
      {
       fwrite($fp,$file1[$i]);
      }
      else
      {
       $st = 1;
      }
     }
      fclose($fp);
if ($st == 1)
{
@unlink('forum/'.$dir.'/'.trim($rep1[1]).'.txt');
echo '<META HTTP-EQUIV="Refresh" CONTENT="0; URL=/?page=forum&kat='.$_GET['kat'].'&stat=read_kat&pages='.$_GET['pages'].'">';
}
else
{
 echo 'Ошибка.';
}
?>