Размер файла: 4.15Kb
<?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($cms.'user/user.txt')) $post = @file($cms.'user/user.txt'); else echo 'Ошибка';
$count_post = count($post);
if (empty($_POST['fapages'])) {
$pages = 1;
} else {
$pages = (int) $_POST['fapages'];
}
$j = ($count_post-1)-(($pages-1)*$st_r);
$i = $j-$st_r;
for(; $i<$j && $j>=0; $j--)
{
include($cms.'user/'.trim($post[$j]).'/profile.php');
echo '
<table
style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="text-align: left; vertical-align: top;"><span class="mess1">'.$post[$j].'</span> <span class="mess2">'.$user_name.'<br />'.$user_info.'</span> </td>
<td style="width: 55px; text-align: right; vertical-align: top;">
<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></td>
</tr>
</tbody>
</table>
<br />
';
}
$all = ceil($count_post/$st_r);
echo '<table><tr>';
for ($i=1;$i<=$all;$i++)
{
if ($pages==$i) {
echo '<td><b class="knopka">'.$i.'</b></td>';
}
else
{
echo '<td>
<form name="" action="" method="post">
<input type="submit" class="knopka" value="'.$i.'">
<input name="fapages" type="hidden" value="'.$i.'">
</form>
</td>';
}
}
echo '</tr></table>';
}
elseif ($_POST['step'] == 2)
{
if (is_file($cms.'user/user.txt')) $post = @file($cms.'user/user.txt'); else echo 'Ошибка';
include($cms.'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($cms.'user/user.txt'); //загоняем файл в массив $file
$count = count($file); //подсчитываем количество строк
$fp = fopen($cms.'user/user.txt',"w");//очищаем файл
for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
{
if($i!=$line)
{
fwrite($fp,$file[$i]);
}
else
{
include_once($cms.'flud/func/files.php'); //библиотека для работы с файлами
include($cms.'user/'.trim($file[$i]).'/profile.php');
unlink($cms.'user/cms_mail_page/'.$mail);
del_dir($cms,'user/'.trim($file[$i]));
if (is_dir($cms.'moduls/avatar/user_avatar/'.trim($file[$i])))
del_dir($cms,'moduls/avatar/user_avatar/'.trim($file[$i]));
if (is_file($cms.'moduls/act/'.trim($file[$i]).'.txt'))
unlink($cms.'moduls/act/'.trim($file[$i]).'.txt');
if (is_file($cms.'moduls/my_link/base/'.trim($file[$i]).'.txt'))
unlink($cms.'moduls/my_link/base/'.trim($file[$i]).'.txt');
if (is_file($cms.'bans/'.trim($file[$i]).'.txt'))
{
unlink($cms.'bans/'.trim($file[$i]).'.txt');
f_refr($cms.'bans/count.txt',-1);
}
f_refr($cms.'user/count.txt',-1);
}
echo '
<span class="ramka">
Успешно!
</span>
<META HTTP-EQUIV="Refresh" CONTENT="2;">
';
}
}
fclose($fp); //закончили работать с файлом
}
else
{
echo 'Ошибка. Поля не заполнены полностью...';
}
?>