I saw this somewhere "A.submit the feed to multiple RSS directories. B.Ping the RSS feeds " what is the meaning ,and could somebody give me a detail instruction ,thank you in avance
RSS feeds are samples, excerpts of your content, presented in a strictly formed XML format. Submitting these feeds to RSS directories is a means of distributing such content across the web and the result is beneficial because once distributed you are gaining links. Pinging an RSS feed means announcing that you have updated content and the search bots that index such feeds are about to come and "grab" it; which is again beneficial because it's saving time on discovering when you have updates.
Its data giving in txt format to other sites (legally) and thats how you can take them (php): $ch = curl_init('http://****.xml'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $rss = new SimpleXMLElement(curl_exec($ch)); foreach($rss->channel->item as $node) { $title = mysql_real_escape_string($node->title); $desc = mysql_real_escape_string($node->description); $link = mysql_real_escape_string($node->link); $channel = mysql_real_escape_string($rss->channel->link); $pubDate = date("Y-m-d H:i:s", strtotime($node->pubDate)); }
Hello friend, RSS is an XML format for regularly updated content of website such as blogs,news headlines,audio,video etc..It is easy way to know the latest content of the site,so you have not need to visit each site and your time will save.pinging is a way to that notifies others that there is updated content on your blog.
R eal S imple S yndication you can either xml a static site - or the easy way to get flawless rss is drop your content on something like wordpress
"RSS is an XML format for regularly know the latest content of the site,so you have not need to visit each site and your time will save.pinging is a way to that notifies others that there is updated content on your blog. " thanks for share,I have not use ping before.
Read this article :Educational use and importance of RSS feeds: More at http://portal.acm.org/citation.cfm?id=1581120.1581160 Also related links here: http://communityseo.com/forums/The-Importance-RSS-t150.html http://forums.seo.com/showthread.php?7315-Importance-of-RSS-feed-in-SEO