Размер файла: 3.89Kb
<?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('news/base.txt')) $post = @file('news/base.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]);
$mess1 = substr($fn[1],0,250);
include('flud/delet_bb.php');
$dec = $mess1;
echo '
<form name="" action="" method="post">
<input name="line" type="hidden" value="'.$j.'">
<input name="step" type="hidden" value="2">
<span class="mess1">'.$fn[0].'<input class="knopka" type="submit" value="Выбрать"> </span>
<span class="mess2">'.$dec.'</span>
</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('news/base.txt')) $post = @file('news/base.txt'); else echo 'Ошибка';
$ex = explode('|',$post[$_POST['line']]);
$ex[1] = str_replace('<br>',"\r\n",$ex[1]);
$mess1 = $ex[1];
include('flud/anti_y.php');
$ex[1] = $mess1;
?>
<span class="ramka">
<form name="" action="" method="post">
Заголовок:<br>
<input name="im_f" type="text" value="<?php echo $ex[0] ?>"><br>
Текст:<br>
<?php
echo '<input name="fn_3" type="hidden" value="'.$ex[3].'">';
?>
<textarea style="width:100%;" style="width: 100%;" name="opis_f" rows=10 cols=50><?php echo $ex[1] ?></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>
</span>
<?php
}
elseif ($_POST['step'] == 3)
{
if (($_POST['im_f'] != "") and ($_POST['opis_f'] != ""))
{
$fname = $_POST['fname'];
$n = htmlspecialchars (substr($_POST['im_f'],0,150));
$o = $_POST['opis_f'];
$mess1 = $o;
include('flud/anti_x.php'); //анти мат полный фильтр
$o = $mess1;
$n=strtr($n,array
(
"|"=>"I",
"\r\n"=>"<br>",
));
$line = $_POST['line'];// строка
$rep = stripslashes($n).'|'.stripslashes($o).'|'.date("d/m/Y").'|'.$_POST['fn_3'].'|'."\r\n"; //на что заменить
$file = @file('news/base.txt'); //загоняем файл в массив $file
$count = count($file); //подсчитываем количество строк
$fp = fopen('news/base.txt',"w");//очищаем файл
for($i=0;$i<$count;$i++) //создаём цикл, кол-во оборотов равно количиству строк в файле
{
if($i!=$line)
{
fwrite($fp,$file[$i]);
}
else
{
fwrite($fp,$rep);
echo '
<span class="ramka">
Успешно!
</span>
<a href="?id='.$_GET['id'].'">Далее</a>
';
}
}
fclose($fp); //закончили работать с файлом
}
else
{
echo 'Ошибка. Поля не заполнены полностью...';
}
}
?>