Файл: public_html/red.php
Строк: 39
<?
include './system/common.php';
include './system/functions.php';
include './system/user.php';
if(!$user OR $user['access'] < 1) {
header('location: /');
exit;
}
$title = 'Редактирование';
include './system/h.php';
{
$id = $_GET['id'];
$result = mysql_query("SELECT `name`,`text` FROM `forum_topic` WHERE `id` = '".$id."'");
$row = mysql_fetch_assoc($result);
if(isset($_POST['save'])){
$name = strip_tags(trim($_POST['name']));
$text = strip_tags(trim($_POST['text']));
mysql_query("UPDATE `forum_topic` SET `name` = '".$name."',`text` = '".$text."' WHERE `id` = '".$id."'");
header('location: /forum/topic/'.$id.'/');
mysql_close();
}
}
?>
<div class="block_zero">
<form method="post" action="/forum/topic/red/<?=$id?>">
<div>Название топика:<br>
<input class="text medium-text" name="name" maxlength="40" value="<?=$row['name']?>" type="text">
<br>Оглавление:<br>
<textarea name="text" class="text large" rows="8" cols="60"><?=$row['text']?></textarea>
<br>
<span class="btn"><span class="end"><input class="label" name="save" value="Изменить" type="submit">Изменить</span></span>
</div>
</form>
</div>
<?
include './system/f.php';
echo'<center><a href="http://statok.net/go/14883"><img src="http://statok.net/imageOther/14883" alt="Statok.net" /></a>';
echo'<script type="text/javascript" src="http://mobtop.ru/c/115374.js"></script><noscript><a href="http://mobtop.ru/in/115374"><img src="http://mobtop.ru/115374.gif" alt="MobTop.Ru - Рейтинг и статистика мобильных сайтов"/></a></noscript></center>';
break;
?>