Просмотр файла engine/services/last_news.php

Размер файла: 348B
  1. <?php
  2. $sql->query('SELECT `time`, `title`, `msg` FROM `news` order by `id` DESC LIMIT 1');
  3. if ($sql->num_rows() == 1)
  4. {
  5. Core::get('text.class');
  6. $news = $sql->fetch();
  7. return '<br />'.htmlspecialchars($news['title']) .' ('.Core::time($news['time']).')<br />'.mb_substr(text::output($news['msg']), 0, 150);
  8. }
  9. return null;