View file top_reit/rustats.su/system/view/admin/edit_cat.tpl
<?php
$cat = Core::query("SELECT * FROM `category` WHERE `id` = ?", array($_GET['get'])) -> fetch();
?>
<form class="h1" method="post" action="/admin/edit_cat/<?php echo $_GET['get']; ?>">
Название категории [2 - 50]<br />
<input type="text" name="name" value="<?php echo Protect::title($cat['name']); ?>" /><br />
<input type="submit" value="Изменить" />
</form>