List of Top RSS Feed Submission Directories

Blogs have RSS feeds and sites can have feeds too. To get subscribers and increase subscriber base, submission of RSS and Feed is important. Find the list of some RSS and Feed submission sites below. 1.    http://www.masternewmedia.org/rss/top55/ 2.    http://feedshark.brainbliss.com/ 3.    http://www.blogpingtool.com 4.    http://www.liquida.com 5.    http://directory.ubdaily.com 6.    http://blogsrater.com/ 7.    http://www.blogsranker.com 8.    http://www.blogrollcenter.com/ 9.    http://www.blloggs.com 10.    http://www.rss-directory.us … Read more

How to read an RSS Feed using PHP

There are many ways 2 read XML Feed using PHP. Some basic ways with which this can be done are given below along with code: Basic Way 1 [php] <?php function getFeed($feed_url) { $content = file_get_contents($feed_url); $x = new SimpleXmlElement($content); echo "<ul>"; foreach($x->channel->item as $entry) { echo "<li><a href=’$entry->link’ title=’$entry->title’>" . $entry->title . "</a></li>"; } … Read more