Вход Регистрация
Файл: news/rss.php
Строк: 78
<?
include_once '../sys/includes/start.php';
include_once 
'../sys/includes/compress.php';
include_once 
'../sys/includes/sess.php';
include_once 
'../sys/includes/home.php';
include_once 
'../sys/includes/settings.php';
include_once 
'../sys/includes/db_connect.php';
include_once 
'../sys/includes/ipua.php';
include_once 
'../sys/includes/fnc.php';
include_once 
'../sys/includes/user.php';
if (
mysql_result(mysql_query("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 
"<lastBuildDate>".date("r",mysql_result(mysql_query("SELECT MAX(time) FROM `news`",$db), 0))."</lastBuildDate>n";
$q=mysql_query("SELECT * FROM `news` ORDER BY `id` DESC LIMIT $set[p_str]");
while (
$post mysql_fetch_assoc($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";
?>
Онлайн: 0
Реклама