Размер файла: 2.77Kb
- <?
- /*
- =============================================
- Движок: SHCMS Engine
- =============================================
- Название файла: Добавление Новости
- =============================================
- Official website: http://shcms.ru
- =============================================
- */
-
- define('SHCMS', true);
- include_once'../system/inc/basic_settings.php';
- $shcmsengine['title'] = 'Добавить новость';
- include_once'../template/head.php';
- $adminka->admin();
-
- if(isset($_POST['submit']))
- {
- $submit = $_POST['submit'];
- }
- if(isset($submit))
- {
- if(isset($_POST['title']))
- {
- $title = $_POST['title'];
- }
- if(isset($_POST['text']))
- {
- $text = $_POST['text'];
- }
- if(isset($_POST['text2']))
- {
- $text2 = $_POST['text2'];
- }
- if(isset($_POST['comm_news']))
- {
- $comm_news = $_POST['comm_news'];
- }
- $title = htmlspecialchars($title);
- $text = htmlspecialchars($text);
- $text2 = htmlspecialchars($text2);
- $title = stripslashes($title);
-
-
- if(strlen($title) <0 || strlen($title) >100)
- {
- echo '<div class="errors">Заголовок должно быть не больше 100 символов</div>';
- include_once'../template/foot.php';
- exit;
- }
- if(empty($title) or empty($text) or empty($text2))
- {
- echo '<div class="errors">Заполните все поля</div>';
- include_once'../template/foot.php';
- exit;
- }
- $shcms_my = mysql_query("INSERT INTO `uncos` (`title`,`text`,`time`,`user_id`,`komm`,`text2`) VALUES ('$title','$text','$time_date','$user_id','$comm_news','$text2')");
- if($shcms_my == true)
- {
- messag("Новость успешно опубликовано");
- include_once'../template/foot.php';
- exit;
- }
- else
- {
- errors("Ошибка добавление новости");
- include_once'../template/foot.php';
- exit;
- }
- }
- else
- {
-
- $form = new form('?');
- $form->input('Заголовок:*','title','text',false,'<br/>');
- $form->textarea('Краткое описания:*','text2');
- $form->textarea('Полное описания:*','text');
- $form->select('Комметарии:','comm_news',array('Разрешить' => 1, 'Запретить'=> 2), 0);
- $form->submit('Добавить','submit');
- $form->submit('Обновить','refresh');
- $form->finish();
-
-
-
- }
- include_once'../template/foot.php';
- ?>