How can I install an RSS feed into an HTML site?

Discussion in 'XML & RSS' started by Jimihat, Jun 6, 2010.

  1. #1
    Hi

    Excuse me for the noob questions but this is all quite new to me.

    I have an html website, www.usatips4brits.co.uk , and also a blog at usatips4brits.blogspot.com; I'm hoping to install a window into the home page of my main site that will automatically show the latest posts on my blog. Is that possible at all and if so any hints/tips on how to do it????

    Thanks in advance

    Jim
     
    Jimihat, Jun 6, 2010 IP
  2. Terry1986

    Terry1986 Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hi Jimihat,

    Sounds like you're looking for a PHP RSS Reader:
    phprssreader.com

    Is this the sort of thing you're looking for?
     
    Terry1986, Jun 7, 2010 IP
  3. myindiahub

    myindiahub Member

    Messages:
    358
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    28
    #3
    you just copy and past your rss link in html site
     
    myindiahub, Jun 8, 2010 IP
  4. AlcVitRes

    AlcVitRes Well-Known Member

    Messages:
    124
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    130
    #4
    And it will give nothing, since he wants something similar like
    RSS news feed preview at co.uk Your blog RSS feed address is:
    http://usatips4brits.blogspot.com/feeds/posts/default Let's say
    it will be vertical column feed (don't place it between Head tags):

    <!-- ++Begin Dynamic Feed Wizard Generated Code++ -->
    <!--
    // Created with a Google AJAX Search and Feed Wizard
    // http://code.google.com/apis/ajaxsearch/wizards.html
    -->

    <!--
    // The Following div element will end up holding the actual feed control.
    // You can place this anywhere on your page.
    -->
    <div id="feed-control">
    <span style="color:#676767;font-size:11px;margin:10px;padding:4px;">Loading...</span>
    </div>

    <!-- Google Ajax Api
    -->
    <script src="http://www.google.com/jsapi?key=notsupplied-wizard"
    type="text/javascript"></script>

    <!-- Dynamic Feed Control and Stylesheet -->
    <script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js"
    type="text/javascript"></script>
    <style type="text/css">
    @import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css");
    </style>

    <script type="text/javascript">
    function LoadDynamicFeedControl() {
    var feeds = [
    {title: 'USA tips',
    url: 'http://rss.macworld.com/macworld/feeds/main'
    },
    {title: 'for brits',
    url: 'http://www.orlandoforbrits.com/index.php?format=feed&type=rss'
    },
    {title: 'free Orlando guide',
    url: 'http://www.orlandoinfo.com/rss'
    },
    {title: 'for download',
    url: 'http://www.tuaw.com/rss.xml'
    }];
    var options = {
    stacked : false,
    horizontal : false,
    title : ""
    }

    new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
    </script>
    <!-- ++End Dynamic Feed Control Wizard Generated Code++ -->


    I used http://www.google.com/uds/solutions/wizards/dynamicfeed.html
    for this example with
    USA tips, for brits, free Orlando guide, for download meta-tags.

    Hope it helps. PM otherwise.. :)
     
    AlcVitRes, Jun 8, 2010 IP