Файл: core/admin/add_cat.php
Строк: 16
<?php
if (!defined('BLOG')) { die('Access Denied!'); }
$error = '';
if (!empty($_POST['title'])) {
$q = (bool) $db->query("INSERT INTO ?_category SET `title` = ?, `text` = ?", $_POST['title'], $_POST['text']);
if ( !$q ) {
addMessage('Ошибка! Раздел не добавлен!', 'error');
}
else {
del_vars('categories');
addMessage('Раздел успешно добавлен!', 'ok');
}
redirect( './' );
}
show_header('Добавление категории', '', '', 'Y');
echo '<div class="downlist2"><form action="?a=add_cat" method="post">
Название:<br />
<input name="title" type="text" value="' . request('title') . '" /><br />
Описание: <small>[<a href="/' . gen_uri('smiles') . '">Смайлы</a>][<a href="/' . gen_uri('code') . '">ББ-коды</a>]</small><br />
<textarea name="text" cols="26" rows="5">' . request('text') . '</textarea><br />
<input name="send" type="submit" value="Добавить" />
</form><br />
<img src="' . ICONS . 'return.png" alt=""/> <a href="/' . gen_uri('category') . '">К разделам</a><br />
</div>';
?>