Просмотр файла modules/news/article.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. $news_id = abs(intval($_GET['news_id']));
  10. $news_n = $db->query("SELECT * FROM `news` WHERE `id` = '". $news_id ."' LIMIT 1")->rowCount();
  11. if($news_n == 0) { go('/news/'); exit;}
  12. $news_t = $db->query("SELECT * FROM `news` WHERE `id` = '". $news_id ."' LIMIT 1")->fetch();
  13. $title = $news_t['name'] .' | '.$lang->word('news');
  14. require_once(SYS.'/view/header.php');
  15. $tpl->div('title', $news_t['name']);
  16. $news_q = $db->query("SELECT * FROM `news` WHERE `id` = '". $news_id ."' LIMIT 1");
  17. while($news = $news_q->fetch()) {
  18. $tpl->div('post', output($news['text']) .'<br/></div><div class="news">'.nick($news['user_id']) . ' <br/>('.rtime($news['time']).')');
  19. }
  20. $tpl->div('block', NAV .'<a href="/news/'. $news_id .'/comments/">'. $lang->word('comments') .'</a> ('. $db->query("SELECT * FROM `news_comms` WHERE `news_id` = '". $news_id ."'")->rowCount() .')<br/>' . NEWS_ICON .' <a href="/news/">'. $lang->word('news') .'</a><br/>' . HICO .' <a href="/">'. $lang->word('home').'</a>');
  21. require_once(SYS.'/view/footer.php');
  22. ?>