Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- header("Content-Type: application/rss+xml");
- echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>";
- ?>
- <rss version="2.0">
- <channel>
- <title>Antribute.eu // Minecraft</title>
- <link>http://mc.antribute.eu</link>
- <description>Die Offizielle Seite des Minecraft-Servers von Antribute.eu</description>
- <language>de-de</language>
- <copyright>Copyright by Antribute.eu Projekt</copyright>
- <image>
- <url>http://antribute.eu/content/images/icon_512.png</url>
- <link>http://mc.antribute.eu</link>
- <width>80</width>
- <height>80</height>
- <description>Antribute.eu // Minecraft</description>
- <title>Antribute.eu // Minecraft</title>
- </image>
- <?php
- include('config.php');
- $sql = "SELECT * FROM news ORDER BY id DESC";
- $entry = mysql_query($sql,$datenbank) or die(mysql_error());
- while($news = mysql_fetch_object($entry))
- {
- ?>
- <item>
- <title><?php echo $news->title ?>></title>
- <link>http://mc.antribute.eu/?p=news&mode=view&id=<?php echo $news->id ?></link>
- <guid>http://mc.antribute.eu/?p=news&mode=view&id=<?php echo $news->id ?></guid>
- <description><?php if(strlen($news->text) >= 150) { $news->text=wordwrap($news->text,150); $news->text = substr($news->text,0,strpos($news->text,"\n")).'...'; } echo($news->text); ?></description>
- <category><?php echo $news->cat ?></category>
- <pubDate><?php echo $news->datum ?></pubDate>
- </item>
- <?php } ?>
- </channel>
- </rss>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement