<?php

require("archives/updates.php");

$now = date("D, d M Y H:i:s T");

$output = "<?xml version=\"1.0\"?>
            <rss version=\"2.0\">
                <channel>
                    <title>Room For One More</title>
                    <link>http://ottercomics.taur.net/rfom/index.php</link>
                    <description>A webcomic created by Brittany Greatbear, by Oren Otter, with Eala Dubh. Fnaire Antbear is your typical college anteater living with a myriad of friends at 86711 Prospect Boulevard, a mansion filled with weird and wonderful people and places. Join her as she takes on the challenges of life, both ordinary and surreal, in Critter County, Colorado.</description>
                    <language>en-us</language>
                    <pubDate>$pubDate</pubDate>
                    <lastBuildDate>$pubDate</lastBuildDate>
		  <image>
		    <url>http://ottercomics.taur.net/rfom/rfomanim.gif</url>
		    <title>Room For One More animated icon</title>
		    <link>http://ottercomics.taur.net/rfom</link>
		  </image>
                    <managingEditor>r_f_o_m@yahoo.com</managingEditor>
                    <webMaster>xyie_fourseasons@yahoo.com</webMaster>
            ";
            

$output .= "<item><title>#".$rfom_now_date.": ".htmlentities($headline)."</title>
                    <link>".htmlentities("http://ottercomics.taur.net/rfom/archives/phparchive.php?strip=" . $rfom_now_date)."</link>
                    
<description>".$last_date." - ".htmlentities(strip_tags($description))."</description>
                </item>";


$output .= "</channel></rss>";
header("Content-Type: application/rss+xml");
echo $output;
?>

