tags:

views:

65

answers:

4

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:

http://www.expertclick.com/RssFeed.aspx?type=releases

A: 

Search for rss feed classes for php on google should help you.

Toby Allen
A: 

The search results below should help:

http://www.google.co.uk/search?q=PHP+RSS+Feed

Pino
+3  A: 

Yes its possible.

http://www.webreference.com/authoring/languages/xml/rss/custom_feeds/

sheeks06
+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