Просмотр файла modules/forum/add_subforum.php

Размер файла: 1.42Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.ru *
  7. **********************************/
  8. $locate = 'in_forum';
  9. $f_id = abs(intval($_GET['f_id']));
  10. if($user['level'] < '6' || !isset($f_id)) { go('/'); exit;}
  11. if($db->query("SELECT * FROM `forum` WHERE `id` = '". $f_id ."'")->rowCount() == 0) {
  12. go('/forum/');
  13. }
  14. if(isset($_POST['create']) && $_GET['act'] == 'create') {
  15. $name = substr(input($_POST['name']), 0, 90);
  16. $descr = substr(input($_POST['desc']), 0, 160);
  17. $db->query("INSERT INTO `forum_c`(`name`, `f_id`, `desc`, `pos`) VALUES('".$name."', '". abs(intval($f_id))."', '".$descr."', 0)");
  18. go('/forum/'. $f_id);
  19. // print_r($db->errorInfo());
  20. }
  21. $title = $lang->word('create_subforum');
  22. require_once(SYS.'/view/header.php');
  23. $tpl->div('title', $lang->word('create_subforum'));
  24. echo '<form action="/forum/add_subforum/'. $f_id .'/?act=create" method="post">
  25. <div class="menu">
  26. <b>'. $lang->word('name') .'</b>:<br/>
  27. <input name="name" type="text" /><br/>
  28. <b>'. $lang->word('desc') .'</b>:<br/>
  29. <input name="desc" type="text" /><br/>
  30. <input name="create" type="submit" value="'. $lang->word('create') .'" /><br/>
  31. </div>
  32. </form>';
  33. $tpl->div('block', NAV .'<a href="/forum/">'. $lang->word('forum') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
  34. require_once(SYS.'/view/footer.php');
  35. ?>