Просмотр файла modile/moduls/blog/red_post.php

Размер файла: 3.33Kb
<?php
Defined('INDEX_S_S') or die ('Доступ запрещен!!!');


if ($_POST['step'] == 1 or $_POST['step'] == '')
{
 $st_r = 10;

 if (is_file($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt')) $post = @file($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt'); else echo 'Ошибка';

 $count_post = count($post);

 if (empty($_GET['pages'])) {
    $pages = 1;
 }  else {
    $pages = (int) $_GET['pages'];
 }

 $j = ($count_post-1)-(($pages-1)*$st_r);
 $i = $j-$st_r;
 for(; $i<$j && $j>=0; $j--)
 {
 $fn = explode("|",$post[$j]);
 echo '
      <div class="mess1">'.$fn[2].' - '.$fn[3].'</div> <div class="mess2">'.$fn[1].'</div>
      <form name="" action="" method="post">
      <input name="line" type="hidden" value="'.$j.'">
      <input name="step" type="hidden" value="2">
      <input class="knopka" type="submit" value="Выбрать">
      </form>
      <hr>
     ';


 }
 echo 'Страницы:&nbsp;'."\n";
 $all = ceil($count_post/$st_r);
 for ($i=1;$i<=$all;$i++) {
    if ($pages==$i) {
        echo '<b>'.$i.'</b> ';
    } else {
        echo '<a href="/?page=us_blog&int=red&pages='.$i.'">'.$i.'</a> '."";
    }

 }
}
elseif ($_POST['step'] == 2)
{
 if (is_file($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt')) $post = @file($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt'); else echo 'Ошибка';
 $ex = explode('|',$post[$_POST['line']]);
 $ex[1] = str_replace('<br>',"\r\n",$ex[1]);

 $mess1 = $ex[0];
 include($cms.'flud/anti_y.php');
 $name = $mess1;

 $mess1 = $ex[1];
 include($cms.'flud/anti_y.php');
 $mess = $mess1;
?>

<span class="ramka">
<form name="" action="" method="post">
Пост:<br>
<textarea style="width:100%;" name="mess11" rows=3 cols=55><?php echo $mess ?></textarea>
<input name="capt2" type="hidden" value="<?php echo $a;?>"><br>
<br><input class="knopka" type="submit" value="Послать">
<input name="pokas" type="hidden" value="2">
<input name="line" type="hidden" value="<?php echo $_POST['line']?>">
<input name="step" type="hidden" value="3">
</form>
</span>
<?php
}
elseif ($_POST['step'] == 3)
{
    if (($_POST['mess11'] != ""))
    {
    	$mess1 = $_POST['mess11'];
  		include($cms.'flud/anti_x.php');
 		$mess_t = $mess1;

     $line = $_POST['line'];// строка
     $rep =  ''.$_SESSION['user_login'].'|'.stripslashes($mess_t).'|'.date("d/m/Y").'|'.date("H:i:s").'|'."\r\n"; //на что заменить
     $file = @file($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt'); //загоняем файл в массив $file
     $count = count($file); //подсчитываем количество строк
     $fp = fopen($cms.'moduls/blog/base/'.$_SESSION['user_login'].'.txt',"w");//очищаем файл
     for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
     {
     if($i!=$line)
     {
     fwrite($fp,$file[$i]);
     }
     else
     {
     fwrite($fp,$rep);
     echo '
      <a href="/?page='.$_GET['page'].'&int='.$_GET['int'].'">Далее</a>
     ';
     }
     }
      fclose($fp); //закончили работать с файлом


    }
      else
      {
       echo 'Ошибка. Поля не заполнены полностью...';
      }
}
?>