|
Technology Forums: FTA, Satellite, Cable, Home Media, Hardware & Computers
|
|
|
|
||||||
| Register | Members List | Search | Search | Today's Posts | Mark Forums Read |
| Web Development Web development and programming - C++, PHP, ASP, Javascript, and related issues. |
![]() |
|
|
Thread Tools |
|
|
#2 (permalink) |
|
Moderator
Join Date: Apr 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
http://www.google.co.uk/search?hl=en...e+Search&meta=
- Rich Site Summary. An XML format for sharing content among different Web sites such as news items. Hope that helps, Andy |
|
|
|
|
|
#4 (permalink) |
|
Senior Member
Join Date: Apr 2006
Location: Delhi, India
Posts: 127
Thanks: 0
Thanked 0 Times in 0 Posts
|
Yes you need RSS Readers to read feeds....
Try http://www.feedreader.com/ for example...nice one! You can read feeds from your Firefox Browser also use either http://sage.mozdev.org/ or http://www.wizzcomputers.com/WizzRss.php |
|
|
|
|
|
#5 (permalink) |
|
Technology Forums
|
and to generate feeds or rss feeds you need this:
http://hunterdavis.com/ssrss.html |
|
|
|
|
|
#6 (permalink) |
|
Junior Member
Join Date: Aug 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
Well friend, I have some RSS public feeds on michigan.gov's website I would like to implement into my website. It says free for personal use and says you can use any RSS reader to subscribe to them. What separates my website from any RSS reader if I let them choose which to select and load how they want. Wouldn't it just become RSS software then? I am confused there how some people can make money selling rss software and wondering if it is legal to put them on my website. I am not looking to steal the information it is setup to be public information and of course I will not modify it at all.
------------------ Arizona HR Consulting Last edited by carlos.jango71; 28-08-07 at 01:51 AM. |
|
|
|
|
|
#7 (permalink) |
|
Member
Join Date: Sep 2007
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
|
Building a RSS Feed is straight forward. Open a text editor, Notepad is perfect, and copy the following code into it. Save the file as .. filename.txt then change the content of the file to whatever you want to say. Once complete, save the file as filename.XML (no need for capital letters, I've just done that for emphasis.
Next, load the file onto your web space. Code:
<?xml version="1.0"?> <rss version="2.0"> <channel> <item> <title>PAGE TITLE</title> <description>Description about the page you are linking to</description> <link>http://www.mydomain.co.uk/page1.php</link> </item> <item> <title>2ND PAGE</title> <description>Description about the page you are linking to</description> <link>http://www.mydomain.co.uk/page2.php</link> </item> </channel> </rss> |
|
|
|