Размер файла: 3.76Kb
<?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('obv/base.txt')) $post = @file('obv/base.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]);
$mess1 = substr($fn[1],0,250);
include('flud/delet_bb.php');
$rec = $mess1;
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">'.$fn[0].'</span> <span class="mess2">'.$dec.'</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>
';
}
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="/admin.php?id=7&pages='.$i.'">'.$i.'</a> '."";
}
}
}
elseif ($_POST['step'] == 2)
{
if (is_file('obv/base.txt')) $post = @file('obv/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
include('flud/js/bb.php');
include('flud/js/smyle.php');
$ms_pol = 'opis_f';
include('flud/js/smyler.php');
$ms_pol = 'opis_f';
include('flud/js/bber.php');?>
<textarea style="width: 100%;" name="opis_f" rows=30 cols=50><?php echo $ex[1] ?></textarea>
<br>
Сайт:<br>
<input name="site" type="text" value="<?php echo $ex[3] ?>">
<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 = substr($_POST['opis_f'],0,5000);
$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").'|'.htmlspecialchars($_POST['site'])."\r\n"; //на что заменить
$file = @file('obv/base.txt'); //загоняем файл в массив $file
$count = count($file); //подсчитываем количество строк
$fp = fopen('obv/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>
<META HTTP-EQUIV="Refresh" CONTENT="1;">
';
}
}
fclose($fp); //закончили работать с файлом
}
else
{
echo 'Ошибка. Поля не заполнены полностью...';
}
}
?>