so hab jetzt mal google benutzt und das hier gefunden
und so weit angepasst wie es geht
<?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>RSS Feed Shoutbox</title>
<language>de</language>
<link>http://Gamerforlife-clan.de</link>
<description>Letzte 5 eintrage der Shoutbox</description>
<copyright>...</copyright>
<?php
include("dbconnect.php");
// Datenbankabfrage
$query = "SELECT * FROM ic1_shoutbox ORDER BY ID DESC LIMIT 5";
$result = mysql_query($query);
// Ausgabe der Daten
while ($row = mysql_fetch_array($result)){
$id = $row['ID'];
$title = $row['header'];
$news = $row['main'];
$pubdate = strtotime($row['datetime']);
$pubdate = date(r, $pubdate);
?>
<item>
<title><?php echo $title; ?></title>
<link>http://gamerforlife-clan.de/rss_feedshoutbox.php<?php echo $id; ?></link>
<guid isPermaLink="false">http://gamerforlife-clan.de/</guid>
<author>wer auch immer</author>
<pubDate><?php echo $pubdate; ?></pubDate>
<description><![CDATA[ <?php echo $news; ?> ]]></description>
</item>
<?php } ?>
</channel>
</rss>
da ich von php gar keine ahnung habe
frag ich einfach mal nett nach
ob mir jemand das eventuell anpassen könnte?
die datenbank tabelle heist
`ic1_shoutbox`