Размер файла: 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.'obv/base.txt')) $post = @file($cms.'obv/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($cms.'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 />
';
}
$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.'obv/base.txt')) $post = @file($cms.'obv/base.txt'); else echo 'Ошибка';
$ex = explode('|',$post[$_POST['line']]);
$ex[1] = str_replace('<br />',"\r\n",$ex[1]);
$mess1 = $ex[1];
include($cms.'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($cms.'flud/js/bb.php');
include($cms.'flud/js/smyle.php');
$ms_pol = 'opis_f';
include($cms.'flud/js/smyler.php');
$ms_pol = 'opis_f';
include($cms.'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($cms.'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($cms.'obv/base.txt'); //загоняем файл в массив $file
$count = count($file); //подсчитываем количество строк
$fp = fopen($cms.'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 'Ошибка. Поля не заполнены полностью...';
}
}
?>