How to add RSS feed to my website?

Discussion in 'HTML & Website Design' started by CHA0S, Apr 1, 2010.

  1. #1
    Hi,

    Basically what I want to do can be seen if you visit this link:

    http://abridgedseries.wikia.com/wiki/Abridged_Series_Wiki

    If you look on the right side of the page you will see "Abridging Underground Latest Videos" and "The Abridged Community Latest Videos". Under these two headings there is a list of links to the latest videos. I basically want to replicate this as it is. I only want the feed displayed in a list style like that.

    You can also see "For more, click here" written under each list. Clicking those links will take you to:

    http://tabrig.ning.com/video/video/rss?xn_auth=no
    and
    http://abridgedunderground.ning.com/video/video/rss?xn_auth=no

    I pretty much know nothing about this RSS stuff, and I'm wondering if I need to use those links, or what I need to do to in order to create a list of videos on my website in the same way as the website I included at the top of this post. Any help would be great, thanks.
     
    CHA0S, Apr 1, 2010 IP
  2. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #2
    You're probably looking for a RSS parsing tool to embed those links into your website.
    Try Magpie RSS. The feed link to use is
    http://tabrig.ning.com/video/video/rss?xn_auth=no
    Code (markup):
     
    Clive, Apr 1, 2010 IP
  3. sajan1kota

    sajan1kota Active Member

    Messages:
    186
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    50
    #3
    http://magpierss.sourceforge.net/ is a nice option.
     
    sajan1kota, Apr 1, 2010 IP
  4. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #4
    Nice one indeed. Never heard of it but it looks promising.
    Oh wait, I mentioned the exact same option in my post, coincidentally.
     
    Clive, Apr 1, 2010 IP
  5. canadianguy_001

    canadianguy_001 Peon

    Messages:
    97
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Magpie is pretty nice - I used to use it, as it is fairly light.

    Another decent option I have switched to more recently is SimplePie... It is a bit more up to date and more robust. May be a little easier to understand for a beginner. The downside is that it is a slightly bigger package than MagPie

    http://simplepie.org/demo/
     
    canadianguy_001, Apr 1, 2010 IP
  6. kaleelkr

    kaleelkr Active Member

    Messages:
    278
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    95
    #6
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <rss version="2.0">

    <channel>
    <title>Title</title>
    <link>http://www.example.com</link>
    <description>Description</description>



    <item>
    <title>Title1</title>
    <link>URL</link>
    <description>description</description>
    </item>

    <item>
    <title>Title2</title>
    <link>URL</link>
    <description>description</description>
    </item>



    </channel>

    </rss>


    ------------------------------------ seo Company Kerala --------------- Kerala Web designer----
     
    kaleelkr, Apr 1, 2010 IP