How to generate custom Atom and RSS feeds with Php
Php FeedWriter is a free Php package that allows RSS and Atom feeds to be generated using a single script. Build and populate your feed from your database or static content once, then allow users of your website to subscribe to view the feed in many common formats, including Atom 1.0 and RSS 2.0. Other output formats are also supported as well making your custom feeds highly compatible with feed readers and aggregators.
Below is a simple step by step tutorial to create a basic feed using the free class that build upon the sample scripts available to download from the official website. Class documentation is provided to help use the class when constructing your feed from database or static content.
Showing posts with label Php RSS Feed Writer. Show all posts
Showing posts with label Php RSS Feed Writer. Show all posts
Php Feed Generator - Free Php Class (Custom feed in 5 Simple Steps)
Posted by DanielS Monday, September 12, 2011 at 8:59 AM 0 commentsHow to Generate an RSS Feed using Php
Posted by DanielS Friday, January 8, 2010 at 11:39 PM 1 commentUpdate 14th Aug 2011:
The information in this post is for the RSS2Writer Class, which has since been updated to Php FeedWriter. Php FeedWriter supports output in multiple formats, including Atom 1.0, RSS 2.0 and RSS 1.0 (RDF). Online documentation is available to help with using the class library to generate RSS or Atom Feeds.
Generate RSS Feed using Php FeedWriter
The latest version of Php FeedWriter can be downloaded for free from the Php FeedWriter Website
http://phpfeedwriter.webmasterhub.net/
The following describes how to generate an RSS 2.0 compatible feed from a Php Script. the process utilises the free Php RSS2Writer Class written by Daniel Soutter. Examples are provided to create an RSS feed that includes optional information such as copyright, author, and channel/item categories. The Class allows the RSS Feed XML to be rendered by a browser or RSS Reader, as well as the option to output the RSS feed to a file if required.
For more detailed information, usage instructions and a free download of the RSS2Writer Package containing the class file and sample controller, see Php RSS2Writer (v2.0) - Generate RSS 2.0 Feed - Usage Instructions & Download.
Generate an RSS Feed using the Php RSS2Writer Class:
1. Include and initiate the RSS2Writer Class
require_once("RSS2Writer.php");
$rss2_writer = new RSS2Writer('Feed Title', 'Feed Description', 'feed url');
2. Add additional information to the Feed Channel
$rss2_writer->addElement('copyright', '(c) Daniel Soutter 2010');
3. Add Items to the Feed
$rss2_writer->addItem('item title', 'item content/description', 'item url');
3.1 Add Additional information to an item (most recent)
$rss2_writer->addCategory("Free Php Script");
$rss2_writer->addCategory("RSS 2.0 Feed Generator");
4. Output the RSS 2.0 compatible Feed XML
echo $rss2_writer->getXML();
When the php script is accessed using a web browser, the result will be an RSS 2.0 compatible feed, which can the be subscribed to, or submitted to search engines as a site map.
Note: To add additional information to the feed channel, you need to call the addElement / addCategory functions before adding items to the feed. To add additional information to a specific item in the RSS feed, call the functions after adding the items to the feed. The additional elements will be added to the item most recently added to the feed.
-----------------------------------------------
Php Generate RSS Feed
Free Download Php RSS Writer
Generate RSS Feed using Php
Subscribe to:
Posts (Atom)