Просмотр файла adm/del_user.php

Размер файла: 5.14Kb
<?php
Defined('ADMIN_S_S') or die ('Доступ запрещен!!!');
echo
'<span class="ramka">
Удалить польхователя.
</span><br>';

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

 if (is_file('user/user.txt')) $post = @file('user/user.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--)
 {
 include('user/'.trim($post[$j]).'/profile.php');

 echo '
<span class="mess1">'.$post[$j].'</span> <span class="mess2">'.$user_name.'<br>'.$user_info.'</span>
      <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="/adminf.php?id=8&pages='.$i.'">'.$i.'</a> '."";
    }

 }
}
elseif ($_POST['step'] == 2)
{
 if (is_file('user/user.txt')) $post = @file('user/user.txt'); else echo 'Ошибка';
 include('user/'.trim($post[$_POST['line']]).'/profile.php');
 $user_info = str_replace('<br>',"\r\n",$user_info);

?>
<form name="" action="" method="post">
Имя:<br>
<input class="ramka" name="im_f" type="text" value="<?php echo $user_name ?>"><br>
О пользователе:<br>
<textarea class="ramka" name="opis_f" rows=10 cols=50><?php echo $user_info ?></textarea>
<br>
<input name="step" type="hidden" value="3">
<input name="line" type="hidden" value="<?php echo $_POST['line'] ?>">

<input class="knopka" type="submit" value="Удалить">
</form>
<?php
}
elseif ($_POST['step'] == 3)
{
    if (($_POST['im_f'] != "") and ($_POST['opis_f'] != ""))
    {


     $line = $_POST['line'];// строка
     $file = @file('user/user.txt'); //загоняем файл в массив $file
     $count = count($file); //подсчитываем количество строк
     $fp = fopen('user/user.txt',"w");//очищаем файл
     for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
     {
     if($i!=$line)
     {
     fwrite($fp,$file[$i]);
     }
     else
     {
     include('user/'.trim($file[$i]).'/profile.php');

     @unlink('user/cms_mail_page/'.$mail);

     @unlink('user/'.trim($file[$i]).'/profile.php');
     @unlink('user/'.trim($file[$i]).'/count.txt');
     @unlink('user/'.trim($file[$i]).'/mess_to.txt');
     @unlink('user/'.trim($file[$i]).'/mess_in.txt');
     @unlink('user/'.trim($file[$i]).'/mess_stat.txt');
     @unlink('user/'.trim($file[$i]).'/balans.txt');
     @unlink('user/'.trim($file[$i]).'/tema.txt');
     @unlink('user/'.trim($file[$i]).'/avatar.txt');

           $dire = opendir ('moduls/avatar/user_avatar/'.trim($file[$i]).'/');
          while ($filee = readdir ($dire))
         { if (( $filee != ".") && ($filee != ".."))
          {
           @unlink('moduls/avatar/user_avatar/'.trim($file[$i]).'/'.$filee);
          }
         }
          closedir ($dire);
          @rmdir('moduls/avatar/user_avatar/'.trim($file[$i]).'');

     @rmdir('user/'.trim($file[$i]));

       $fpc = file_get_contents('user/count.txt');
       --$fpc;
       $fpx = fopen ("user/count.txt", "w+");
       fwrite ($fpx, $fpc);
       fclose ($fpx);

      if (is_file('moduls/blog/base/'.trim($file[$i]).'.txt'))
      {
       $filew = @file('moduls/blog/spisok.txt'); //загоняем файл в массив $file
       $countw = count($filew); //подсчитываем количество строк
       $fpw = fopen('moduls/blog/spisok.txt',"w");//очищаем файл
       for($iw=0;$iw<$countw;$iw++) //создаём цикл, кол-во оборотов равно количиству строк в файле
       {
         if(trim($filew[$iw]) != trim($file[$i]))
         {
         fwrite($fpw,$filew[$iw]);
         }
         else
         {
         $del_blogw = trim($filew[$iw]);
         @unlink('moduls/blog/base/'.$del_blogw.'.txt');
         @unlink('moduls/blog/base/'.$del_blogw.'_of.php');
         @unlink('moduls/blog/base/'.$del_blogw.'_com.txt');
         echo '
         <span class="ramka">
         Блог пользователя удален успешно!
         </span>                          <br>
         ';
         }
        }
         fclose($fpw); //закончили работать с файлом
      }
     echo '
     <span class="ramka">
     Успешно!
     </span>
      <a href="/adminf.php?m='.$_GET['m'].'&id='.$_GET['id'].'">Далее</a>
     ';
     }
     }
      fclose($fp); //закончили работать с файлом


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