Размер файла: 4.45Kb
<?php
Defined('ADMIN_S_S') or die ('Доступ запрещен!!!');
echo
'<span class="ramka">
Удалить файл.
</span><br>';
if ($_POST['step'] == 1 or $_POST['step'] == '')
{
echo 'Выберите каталог с файлом.<br>';
echo '<form name="" action="" method="post">';
echo '<select size="1" name="kat">
';
$dir = opendir ("file");
while ($file = readdir ($dir))
{ if (( $file != ".") && ($file != 'com_add.php') && ($file != 'comment.php') && ($file != "..") && ($file != 'none') && ($file != 'index.php'))
{
echo '<option value="'.trim($file).'">'.file_get_contents('file/'.$file.'/namekat.txt').'</option>
';
}
}
closedir ($dir);
echo '</select><br />
';
echo '<input name="step" type="hidden" value="2">';
echo '<input type="submit" value="Далее">';
echo '</form>';
}
elseif ($_POST['step'] == 2)
{
$st_r = 10;
if (is_file('file/'.$_POST['kat'].'/namefile.txt')) $post = @file('file/'.$_POST['kat'].'/namefile.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--)
{
$fn = explode("|",$post[$j]);
echo '
<form name="" action="" method="post">
<input name="line" type="hidden" value="'.$j.'">
<input name="kat" type="hidden" value="'.$_POST['kat'].'">
<input name="step" type="hidden" value="3">
<span class="mess1">'.$fn[0].'<input class="knopka" type="submit" value="Выбрать"> </span>
<span class="mess2">
'.(file_get_contents('file/'.$_POST['kat'].'/'.trim($fn[2]).'_opis1.txt')).'</span>
</form>
<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'] == 3)
{
if (is_file('file/'.$_POST['kat'].'/namefile.txt')) $post = @file('file/'.$_POST['kat'].'/namefile.txt'); else echo 'Ошибка';
$ex = explode('|',$post[$_POST['line']]);
$ex[1] = str_replace('<br>',"\r\n",$ex[1]);
?>
<form name="" action="" method="post">
<input name="fname" type="text" value="<?php echo $ex[2] ?>"><br><br>
<input class="ramka" name="" type="text" value="<?php echo $ex[0] ?>">
<br>
<input name="step" type="hidden" value="4">
<input name="line" type="hidden" value="<?php echo $_POST['line'] ?>">
<input name="kat" type="hidden" value="<?php echo $_POST['kat'] ?>">
<input class="knopka" type="submit" value="Удалить!">
</form>
<?php
}
elseif ($_POST['step'] == 4)
{
$fname = $_POST['fname'];
$line = $_POST['line'];// строка
$file = @file('file/'.trim($_POST['kat']).'/namefile.txt'); //загоняем файл в массив $file
$count = count($file); //подсчитываем количество строк
$fp = fopen('file/'.trim($_POST['kat']).'/namefile.txt',"w");//очищаем файл
for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
{
if($i!=$line)
{
fwrite($fp,$file[$i]);
}
else
{
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname));
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname).'_prosm.txt');
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname).'_comment.txt');
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname).'_opis1.txt');
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname).'_opis2.txt');
@unlink('file/'.trim($_POST['kat']).'/'.trim($fname).'_stoim.txt');
echo '
<span class="ramka">
Успешно!
</span>
<a href="?id='.$_GET['id'].'">Далее</a>
';
}
}
fclose($fp); //закончили работать с файлом
}
?>