Question: What is full form of RSS?
Rich Site Summary
Its also known as Really Simple Syndication.
Question: What is RSS feed?
It is standard web feed formats to publish the updated information of blog OR website.
Question: What is file extension of RSS Feed?
.xml or .rss
Question: Give a Sample of RSS Feeds?
Start the XML with following code.
<?xml version="1.0" encoding="utf-8"?>
Question: Create a script for?Web Technology experts Notes http://web-technology-experts-notes.inWe are Web Technology Experts Team who provide you Important information on Web Development How to create folder with extension like .EBextensions Suppose you want to create folder with name ".EBextensions" Create folder with name ".EBextensions." Press enter You will see "." will disapper automatically from end of string Folder with name ".EBextensions" created successfully. http://www.web-technology-experts-notes.in/2016/12/how-to-create-folder-with-extension-like-ebextensions.htmlTue, 21 Jun 2016 15:36:00 +0000 FCM push notification example Question: What is FCM Messages? Full form of FCM is Firebase Cloud Messaging. FCM is a cross-platform messaging solution that lets you reliably deliver messages to android and IOS devices at no cost. http://www.web-technology-experts-notes.in/2016/12/fcm-push-notification-example.htmlTue, 21 Jun 2016 20:36:00 +0000 What are special characters? and how to remove special characters? Question: What are special characters? Special characters are selected punctuation characters present on standard US keyboard. Question: Provide list of special characters? http://www.web-technology-experts-notes.in/2016/12/what-are-special-characters-and-how-to-remove-special-characters.htmlWed, 22 Jun 2016 01:36:00 +0000 Node JS tutorial for beginner Question: What is NodeJS Node.js is a platform built for fast and scalable network applications. It uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. http://www.example.com/url4http://www.web-technology-experts-notes.in/2016/12/node-js-tutorial-for-beginner.htmlWed, 22 Jun 2016 06:36:00 +0000
Question: From where I can validate the RSS Feed URL?
https://validator.w3.org/feed/
Question: From where I can validate the RSS Feed Data?
https://validator.w3.org/feed/#validate_by_input
Question: Give a script to generate rss feeds from URL?
$urls= array( 'http://www.web-technology-experts-notes.in/2016/12/how-to-create-folder-with-extension-like-ebextensions.html', 'http://www.web-technology-experts-notes.in/2016/12/fcm-push-notification-example.html', 'http://www.web-technology-experts-notes.in/2016/12/what-are-special-characters-and-how-to-remove-special-characters.html', 'http://www.web-technology-experts-notes.in/2016/12/node-js-tutorial-for-beginner.html', ); $dateTime=strtotime('Tue, 21 Jun 2016 10:36:00 +0000'); $siteMapXml = ' '; '; //Uncomment the below code to enable download /*header("Content-type: application/xml"); header("Content-Disposition: attachment; filename=rss.xml"); header("Pragma: no-cache"); header("Expires: 0");*/ $siteMapXml.=' Web Technology experts Notes http://web-technology-experts-notes.inWe are Web Technology Experts Team who provide you Important information on Web Development '; foreach($urls as $url){ $dateTime+=(3600*5); $dateString=date('D, j M Y H:i:s +0000',$dateTime); $siteMapXml.="- "; } echo $siteMapXml.='
Page Title Page Description {$url}{$dateString}
Question: Give the Sample URL of RSS
Download Sample RSS