Просмотр поста

.
Lumen

Попытался сделать рсс для газеты, но не получается, на странице рсс выводит разделы газеты и все (( подскажите плиз что не так
<?

define('_IN_JOHNCMS', 1);
require_once ("../incfiles/core.php");

header('content-type: application/rss+xml');
echo '<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel>
<title>' . $copyright . ' | Газета</title>
<link>' . $home .
'</link>
<description>Газета</description>
<language>ru-RU</language>
<webMaster>' . $emailadmina . '</webMaster> ';

if $re = mysql_query("select * from `paper` where `type`='bk' order by `time` desc LIMIT 15;");
{
echo ' <item>
<title>Газета: ' . $re['name'] . '</title>
<link>' . $home . '/newspaper/index.php?act=read&id=' . $re['cid'] . '</link>
<author>' . $re['avtor'] . '</author>
<description>' . $res['name'] .
'</description>
</item>';
}
echo '</channel></rss>';

?>