Файл: EasyHost v2.0/system/htdocs/admin/categories/create.pl
Строк: 24
<?php
$system->error('This feature has been disabled in demo mode') if $system->config('demo');
$system->error('You didn't enter a name for this category') if (!$system->param('name'));
$system->error('The category name may not be greater then 100 charaters') if (length($system->param('name')) > 100);
$system->error('Their is already a category with that name') if ($system->db->selectrow_array('SELECT id FROM categories WHERE parent_id = ? AND name = ?',undef,$system->param('parent') || '0',$system->param('name')));
$system->db->do('INSERT INTO categories (parent_id,name,status,date_created) VALUES (?,?,?,NOW())',undef,$system->param('parent') || '0',$system->param('name'),$system->param('status') || '0');
$system->redirect;
?>