Файл: setk/contests/edit_contest.php
Строк: 71
<?php
/*
Автор: WIZART
Сайт: WizartWM.RU
E-mail автора: bi3apt@gmail.com
*/
include_once '../sys/inc/home.php';
include_once H.'sys/inc/start.php';
include_once H.'sys/inc/compress.php';
include_once H.'sys/inc/sess.php';
include_once H.'sys/inc/settings.php';
include_once H.'sys/inc/db_connect.php';
include_once H.'sys/inc/ipua.php';
include_once H.'sys/inc/fnc.php';
include_once H.'sys/inc/user.php';
if (mysql_result(mysql_query("SELECT COUNT(*) FROM `contests` WHERE `id` = '".intval($_GET['id'])."' LIMIT 1"),0)==0){header("Location: /index.php?".SID);exit;}
$c = mysql_fetch_assoc(mysql_query("SELECT * FROM `contests` WHERE `id` = '".intval($_GET['id'])."' LIMIT 1"));
$set['title']="Изменение конкурса - ".htmlspecialchars($c['name'])."";
include_once H.'sys/inc/thead.php';
title();
aut();
only_level(3);
if (isset($_POST['ok'])){
$name=my_esc($_POST['name']);
$msg=my_esc($_POST['msg']);
if (strlen2($name)<3)$err[]="Короткое название конкурса";
if (strlen2($msg)<5)$err[]="Короткие условия конкурса";
if (!isset($err)){
mysql_query("UPDATE `contests` SET `name` = '$name', `msg` = '$msg' WHERE `id` = '$c[id]' LIMIT 1");
header("location:contest.php?id=$c[id]");
}
err();
}
echo "<form method='post' action='?id=$c[id]&$passgen'>
<b>Название:</b><br/><input type='text' name='name' style='width:95%;' value='".htmlspecialchars($c['name'])."'><br/>
<b>Условия конкурса:</b><br/><textarea name='msg' style='width:95%;'>".htmlspecialchars($c['msg'])."</textarea><br/>
<input type='submit' name='ok' value='Изменить конкурс' style='width:97%;'></form>";
echo "<div class='foot'><img src='/style/icons/str.gif' alt=''><a href='/contests/contest.php?id=$c[id]'> ".htmlspecialchars($c['name'])."</a></div>";
echo "<div class='foot'><img src='/style/icons/str.gif' alt=''><a href='/contests/'> Конкурсы</a></div>";
include_once H.'sys/inc/tfoot.php';
?>