15 lines
542 B
XML
Executable File
15 lines
542 B
XML
Executable File
<?php echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; ?>
|
|
<rss version="0.91">
|
|
<channel>
|
|
<pubDate><?php echo date('r'); ?></pubDate>
|
|
<description><?php echo APP_NAME." - Party Count"; ?></description>
|
|
<link><?php echo APP_BASE.$html->url('/'); ?></link>
|
|
<title><?php echo APP_NAME." - Party Count"; ?></title>
|
|
<item>
|
|
<title><?php echo $count; ?></title>
|
|
<description>Total Parties</description>
|
|
<link><?php echo APP_BASE.$html->url('/parties/view/all/'); ?></link>
|
|
</item>
|
|
</channel>
|
|
</rss>
|