Файл: EasyHost v2.0/system/htdocs/admin/emails/create.pl
Строк: 19
<?php
$system->error('This feature has been disabled in demo mode') if $system->config('demo');
$system->error('The template name is required') if (length($system->param('name')) == 0);
$system->error('The template name you entered has already been taken') if ($system->db->selectrow_array('SELECT id FROM emails WHERE name = ?',undef,$system->param('name')));
$system->error('The template subject is required') if (length($system->param('subject')) == 0);
$system->error('The template message is required') if (length($system->param('message')) == 0);
$system->db->do('INSERT INTO emails (name,subject,message) VALUES (?,?,?)',undef,$system->param('name'),$system->param('subject'),$system->param('message'));
$system->redirect;
?>