summary refs log tree commit diff stats
path: root/rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'rss.php')
-rwxr-xr-xrss.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/rss.php b/rss.php index 4b710aa..7950430 100755 --- a/rss.php +++ b/rss.php
@@ -1,6 +1,7 @@
1<?php 1<?php
2 2
3include('includes/db.php'); 3include('includes/db.php');
4include('includes/functions.php');
4include('includes/update.php'); 5include('includes/update.php');
5 6
6echo('<?xml version="1.0"?>'); 7echo('<?xml version="1.0"?>');
@@ -23,7 +24,7 @@ while ($getitems3 = mysql_fetch_array($getitems2))
23 <title><?php echo($getitems3['title']); ?></title> 24 <title><?php echo($getitems3['title']); ?></title>
24 <link>http://pillowcase.fourisland.com/comic<?php echo($getitems3['comic_id']); ?>.htm</link> 25 <link>http://pillowcase.fourisland.com/comic<?php echo($getitems3['comic_id']); ?>.htm</link>
25 <description><![CDATA[<IMG SRC="http://pillowcase.fourisland.com/images/comics/<?php echo($getitems3['filename']); ?> ALT="<?php echo($getitems3['title']); ?>"><p><?php echo($getitems3['text']); ?></p>]]></description> 26 <description><![CDATA[<IMG SRC="http://pillowcase.fourisland.com/images/comics/<?php echo($getitems3['filename']); ?> ALT="<?php echo($getitems3['title']); ?>"><p><?php echo($getitems3['text']); ?></p>]]></description>
26 <pubDate><?php echo(date('D, d M Y H:i:s O',strtotime($getitems3['pubDate']))); ?></pubDate> 27 <pubDate><?php echo(date('r',strtotime(get_meta($getitems3['id'], 'pubDate')))); ?></pubDate>
27 </item> 28 </item>
28<?php 29<?php
29} 30}