Просмотр файла add.php

Размер файла: 1.39Kb
  1. <?php
  2. // coding by Felis
  3.  
  4. require_once('sys/kernel.php');
  5. require_once('temp/cap.php');
  6.  
  7. if($op == true)
  8. {
  9. if(!$_POST)
  10. {
  11. echo $fnc->alert('Сказать', '<form action="'.CFILE.'" method="post">Текст поста:<br />
  12. <textarea rows="3" cols="22" name="post">'.($u ? $fnc->get_author($u).', ' : NULL).'</textarea><br />
  13. <input type="checkbox" name="trans" /> Транслит<br />
  14. <input type="submit" value="Отправить" />
  15. </form>');
  16. echo $fnc->cont('<a href="rules.php?mode=smiles">Смайлы</a> | <a href="rules.php?mode=bbcode">BB-коды</a><br /><a href="main.php">На главную</a>');
  17. }
  18. elseif($usr['banned'] == 'y' and $time - $usr['ban_point'] < $usr['ban_term'])
  19. {
  20. echo $fnc->alert('Ошибка!', 'Вы забанены в чате..');
  21. }
  22. else
  23. {
  24. $prp = $db->prepare("INSERT INTO `posts` (`time`,`author`,`text`) VALUES (?,?,?)");
  25. $prp->bind_param('iis', $timepost, $author, $post);
  26. $timepost = $time;
  27. $author = $uid;
  28. $post = $_POST['trans'] ? $fnc->trans($fnc->out($_POST['post'])) : $fnc->out($_POST['post']);
  29. if(empty($post))
  30. {
  31. $prp->close();
  32. header('Location: '.CFILE);
  33. }
  34. if($prp->execute())
  35. {
  36. $prp->close();
  37. header('Location: main.php');
  38. }
  39. }
  40. }
  41. else
  42. {
  43. echo $fnc->alert('Ошибка!', _AUTH_ERROR);
  44. }
  45.  
  46. require_once('temp/foot.php');
  47.  
  48. // конец файла ./add.php