Размер файла: 3.68Kb
<?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('forum/base/catalog.txt')) $post = @file('forum/base/catalog.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 '
<span class="mess1">'.$fn[0].'</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 'Страницы: '."\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=7&pages='.$i.'">'.$i.'</a> '."";
}
}
}
elseif ($_POST['step'] == 2)
{
if (is_file('forum/base/catalog.txt')) $post = @file('forum/base/catalog.txt'); else echo 'Ошибка';
$ex = explode('|',$post[$_POST['line']]);
?>
<span class="ramka">
<form name="" action="" method="post">
Заголовок:<br>
<input name="im_f" type="text" value="<?php echo $ex[0] ?>"><br>
<input name="step" type="hidden" value="3">
<input name="line" type="hidden" value="<?php echo $_POST['line'] ?>">
<input name="opis_f" type="hidden" value="<?php echo trim($ex[1]) ?>">
<input class="knopka" type="submit" value="Удалить">
</form>
</span>
<?php
}
elseif ($_POST['step'] == 3)
{
if (($_POST['im_f'] != ""))
{
$line = $_POST['line'];// строка
$file = @file('forum/base/catalog.txt'); //загоняем файл в массив $file
$del_del = explode('|',$file[$line]);
$del_fe = file('forum/base/'.trim($del_del[1]).'.txt');
$del_fc = 0;
$not_rep = file('forum/base/'.trim($del_del[1]).'.txt');
while ($del_fe[$del_fc] != '')
{
@unlink('forum/'.trim($not_rep[$del_fc]).'/namekat.txt');
@unlink ('forum/'.trim($not_rep[$del_fc]).'/opiskat.txt');
$del_tem = @file('forum/'.trim($not_rep[$del_fc]).'/nametem.txt');
$del_cnt = 0;
while ($del_tem[$del_cnt] != '')
{
$del_t = explode('|',$del_tem[$del_cnt]);
$del_name = trim($del_t[1]);
@unlink ('forum/'.trim($not_rep[$del_fc]).'/'.$del_name.'.txt');
$del_cnt++;
}
@unlink ('forum/'.trim($not_rep[$del_fc]).'/nametem.txt');
@rmdir ('forum/'.trim($not_rep[$del_fc]));
@unlink ('forum/base/'.trim($del_del[1]).'.txt');
$del_fc++;
}
$count = count($file); //подсчитываем количество строк
$fp = fopen('forum/base/catalog.txt',"w");//очищаем файл
for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
{
if($i!=$line)
{
fwrite($fp,$file[$i]);
}
else
{
echo '
<span class="ramka">
Успешно!
</span>
<a href="/adminf.php?m='.$_GET['m'].'&id='.$_GET['id'].'">Далее</a>
';
}
}
fclose($fp); //закончили работать с файлом
}
else
{
echo 'Ошибка. Поля не заполнены полностью...';
}
}
?>