Nice work. Thanks for sharing. I recommend also Advaced Rss parser , very simple to use. Hope that helps someone
Log in to your account and select feed,follow their instructions and edit when is needed.Don't worry,it is pretty simple.The good news is it is absolutely FREE !
Hi Dear, Just generate RSS feed with xml extention these code will perform in your notepad file <?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="0.91"> <channel> <item> <link> <description> <url> <language> </item> </channel> </rss> and save it with xml extention.When your rss feeds generate then upload it at web server in root directory..
It is very easy to add RSS feed in the web site by means of using joomla CMS. Joomla has an integrated RSS Feed, only you needs to enable and configure it. Following are the steps to add RSS feed to web site- 1. Log in to your Joomla administration area, 2. Go to Components > Syndicate, 3. A new window will open with Syndication Settings You can leave default settings for most of them; change only these below: Title and Description: enter those to customize your feed. Image: Select your own image that will show on the right side of syndication feed. We use our logo. Select which RSS formats do you want to enable. We use only RSS 2.0 Save your settings. Enable it to see RSS feed on your homepage. 1. Go to Modules 2. Find the Module called Syndication 3. We will now edit this Module: Select module position (left, right or whereever you want it to appear) Click Yes on publish radio button. On right, select on which pages do you want it to appear. Scroll down to Parameters: now select which RSS formats do you want to use. We use only RSS 2.0 Save your settings. Now go to your homepage and preview how your feed looks like.
Try this as it fetches all text feed to your site as a full feed .So in other word article will stay on your site Link
I recommend this website: http:xml-rss.com It's free and extremely easy. News from any web. Paste it on your web page or facebook easily.
Magdalene, Great tip. I found that only a summary of my blog post was shown on my web page, and that there was some funny text before it reading: Normal 0 false false false EN-GB X-NONE X-NONE MicrosoftInternetExplorer4 Do you know anyway around these two issues? Marcus.
That's what happens when you dont pay your bills. Pesky horoscopes. All a load of new age dodgy stuff if you ask me.
Here is my code: <?php // Put your RSS feed URL here: $feed = "http://rss.cnn.com/rss/cnn_topstories.rss"; // Assign the local path to your optional cache file $filename = "cache.txt"; // The default cache refresh time (e.g. 1 hour) if (file_exists($filename) && filesize($filename) && (time() - filectime($filename)) < 60 * 60) { $content = file_get_contents($filename); } else { $xml_parser = xml_parser_create(); xml_parse_into_struct($xml_parser, file_get_contents($feed), $vals, $index); xml_parser_free($xml_parser); // The maximum number of displayed items (e.g. 5). $cnt = min(5, count($index["TITLE"])); $content = ""; for ($i = 1; $i < $cnt; $i++) { $content .= "<h3>" . html_entity_decode($vals[$index["TITLE"][$i]]["value"], ENT_QUOTES) . "</h3>\n"; $content .= "<p>" . html_entity_decode($vals[$index["DESCRIPTION"][$i]]["value"], ENT_QUOTES) . "</p>\n"; } file_put_contents($filename, $content, LOCK_EX); } echo $content; ?> Code (markup):