Вход Регистрация
Файл: news/rss.php
Строк: 68
<? include_once '../sys/inc/start.php'; include_once COMPRESS; include_once SESS; include_once '../sys/inc/home.php'; include_once SETTINGS; include_once DB_CONNECT; include_once IPUA; include_once FNC; include_once USER; if (dbresult(dbquery("SELECT COUNT(*) FROM `news` LIMIT 1",$db), 0)==0)exit; header("Content-type: application/rss+xml"); echo "<rss version="2.0">n"; echo "<channel>n"; echo "<title>Новости ".$_SERVER['SERVER_NAME']."</title>n"; echo "<link>http://".$_SERVER['SERVER_NAME']."</link>n"; echo "<description>Новости ".$_SERVER['SERVER_NAME']."</description>n"; echo "<language>ru-RU</language>n"; //echo "<webMaster>$set[adm_mail]</webMaster>n"; echo "<lastBuildDate>".date("r",dbresult(dbquery("SELECT MAX(time) FROM `news`",$db), 0))."</lastBuildDate>n"; $q=dbquery("SELECT * FROM `news` ORDER BY `id` DESC LIMIT $set[p_str]"); while ($post dbassoc($q)) { echo "<item>n"; echo "<title>$post[title]</title>n"; if ($post['link']!=NULL) { if (!preg_match('#^https?://#',$post['link'])) echo "<link>".htmlentities("http://$_SERVER[SERVER_NAME]$post[link]"ENT_QUOTES'UTF-8')."</link>n"; else echo "<link>".htmlentities("$post[link]"ENT_QUOTES'UTF-8')."</link>n"; } echo "<description><![CDATA["; echo output_text($post['msg'],true,true,false)."n"; echo "]]></description>n"; echo "<pubDate>".date("r",$post['time'])."</pubDate>n"; echo "</item>n"; } echo "</channel>n"; echo "</rss>n"; ?>
Онлайн: 2
Реклама