One of my clients gave me the following link as a reference for how it is possible to implement same thing in our site. So please help - give me important links that will help me implement this:
+3
A:
Yes its possible.
http://www.webreference.com/authoring/languages/xml/rss/custom_feeds/
sheeks06
2010-09-09 06:57:12
+2
A:
PHP:
<?php
header("Content-type: text/XML");
echo '<?xml version="1.0" encoding="utf-8"?>'."\n";
echo etc...
?>
where I've put etc... you can pretty much go view source on the link you gave and echo each line there.
If you have any unformatted text you will need to put it in tags as such:
<tag><![CDATA[ unformatted text here ]]></tag>
You get a downvote though because taking 2 mins just to have a search on this site or google would have brought up plenty of helpful resources.
Thomas Clayson
2010-09-09 07:10:55