Просмотр файла modules/news/add_news.php

Размер файла: 1.22Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. $locate = 'in_news';
  9. if($user['level'] < '6') { go('/'); }
  10. if(isset($_POST['create']) && $_GET['act'] == 'create') {
  11. $name = substr(input($_POST['name']), 0, 100);
  12. $text = substr(input($_POST['text']), 0, 3000);
  13. $db->query("INSERT INTO `news`(`name`, `text`, `time`, `user_id`) VALUES('".$name."', '". $text ."', '". time() ."', '". $user['id']."')");
  14. go('/news/');
  15. }
  16. $title = $lang->word('add_news');
  17. require_once(SYS.'/view/header.php');
  18. $tpl->div('title', $lang->word('add_news'));
  19. echo '<form action="/news/add_news/?act=create" method="post">
  20. <div class="menu">
  21. <b>'. $lang->word('name') .'</b>:<br/>
  22. <input name="name" type="text" /><br/>
  23. <b>'. $lang->word('message') .'</b>:<br/>
  24. <textarea name="text" rows="5" cols="26"></textarea><br/>
  25. <input name="create" type="submit" value="'. $lang->word('create') .'" /><br/>
  26. </div>
  27. </form>';
  28. $tpl->div('block', NAV .'<a href="/news/">'. $lang->word('news') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
  29. require_once(SYS.'/view/footer.php');
  30. ?>