<?php
define('INCLUDE_CHECK',1);
define('MYSQL_CHECK',1);
require('../config.php');
require('../mysql.php');
if($language == 'de') {
require_once('../../language/de.php');
}elseif($language == 'en') {
require_once('../../language/en.php');
}
?>
<?php header("Content-type: text/xml"); echo '<'.'?xml version="1.0" encoding="ISO-8859-1"?'.'>'; ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><?php echo $title; ?></title>
<language>de</language>
<link><?php echo $url; ?></link>
<description><?php echo '' . $rsslimit . ' ' . $lang['newest_discs'] . ''; ?></description>
<copyright>Copyright <?php echo $url; ?></copyright>
<webMaster><?php echo $webmaster; ?></webMaster>
<atom:link href="<?php echo $url; ?>framework/feeds/articles.php" rel="self" type="application/rss+xml" />
<?php
$query = "SELECT
discussions.id,
discussions.content,
discussions.date,
discussions.topic,
discussions.author,
topics.id,
topics.subject
FROM
discussions
LEFT JOIN
topics
ON
discussions.topic = topics.id
ORDER BY
discussions.id DESC
LIMIT
" . $rsslimit;
$result = mysql_query($query, $connect) OR die(mysql_error());
while($row = mysql_fetch_assoc($result)) {
$id = (int)$row['id'];
$author = $row['author'];
$title = $row['subject'];
$content = $row['content'];
$pubdate = strtotime($row['date']);
$pubdate = date(r, $pubdate);
?>
<item>
<title><?php echo $title; ?></title>
<link><?php echo $url; ?>read_discussion.php?id=<?php echo $id; ?></link>
<guid isPermaLink="false"><?php echo $url; ?>read_discussion.php?id=<?php echo $id; ?></guid>
<author><?php echo $author; ?></author>
<pubDate><?php echo $pubdate; ?></pubDate>
<description><![CDATA[ <?php echo nl2br($content); ?> ]]></description>
</item>
<?php } ?>
</channel>
</rss>
<?php include_once('../framework/configure/end.php'); ?>