14 lines
522 B
XML
14 lines
522 B
XML
<?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." - Total Users"; ?></description>
|
|
<link><?php echo APP_BASE.$html->url('/'); ?></link>
|
|
<title><?php echo APP_NAME." - Total Users"; ?></title>
|
|
<item>
|
|
<title><?php echo $count; ?></title>
|
|
<description>Total Users</description>
|
|
<link><?php echo APP_BASE.$html->url('/'); ?></link>
|
|
</item>
|
|
</channel>
|
|
</rss> |