Having rss feeds into a webpage ?

Discussion in 'HTML & Website Design' started by procrastinator, Nov 20, 2007.

  1. #1
    I would like to pull rss feeds from various websites into a webpage , preferably html , what would be the best way for me to go about it ? something like indiasphere.net
     
    procrastinator, Nov 20, 2007 IP
  2. blogosquare

    blogosquare Peon

    Messages:
    41
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    first you should have the consent of the site's owner(from which you want to pull the feeds) to do this or that would be considered as spamming/content stealing and get you banned from Google search listing etc

    if you're on a Wordpress installation, you can try this out : http://simplepie.org/
     
    blogosquare, Nov 21, 2007 IP
  3. procrastinator

    procrastinator Peon

    Messages:
    1,718
    Likes Received:
    56
    Best Answers:
    0
    Trophy Points:
    0
    #3
    no i am not on a wordpress install , i wanted a standalone page on which i would have feeds from various sources (basically some social bookmark websites)
     
    procrastinator, Nov 21, 2007 IP
  4. blogosquare

    blogosquare Peon

    Messages:
    41
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    then perhaps you could give more info on the type of install you're on so that we can get you the related tools to get this done.

    great stuff the widgetbucks stuff, trying that now :) thanks for it.
     
    blogosquare, Nov 22, 2007 IP
  5. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #5
    You're best off using a server side programming language like PHP to parse the RSS feeds and convert them to HTML before embedding the output into a Web page.
     
    Dan Schulz, Nov 22, 2007 IP
  6. ottoisaac

    ottoisaac Well-Known Member

    Messages:
    245
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #6
    Try converting the feed to javascript. I see that as being the easiest way to embed rss into a simple html page.

    Here's a link to an RSS to Javascript converter: http://commons.ucalgary.ca/feed2js/build.php

    That should work for what you need. :)
     
    ottoisaac, Nov 22, 2007 IP
  7. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #7
    That's actually a VERY bad idea, ottoisaac. The feed content is not available to search engine spiders nor is it available to those who have JavaScript turned off/stripped by a firewall or flat out not supported. Which is why I suggested the server-side route (since it gets parsed into HTML before being sent to the browser).
     
    Dan Schulz, Nov 22, 2007 IP
  8. ottoisaac

    ottoisaac Well-Known Member

    Messages:
    245
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #8
    I just thought javascript would be the easiest way. Is it not that hard to set up the server-side php?
     
    ottoisaac, Nov 22, 2007 IP
  9. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Shouldn't be hard at all, even for a PHP novice (of which I do include myself in that category by the way).
     
    Dan Schulz, Nov 22, 2007 IP
  10. ottoisaac

    ottoisaac Well-Known Member

    Messages:
    245
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    128
    #10
    Is there a way to embed an entire blog, like with the categories and the archive menus?
     
    ottoisaac, Nov 23, 2007 IP
  11. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #11
    It can be done, but if you're talking about a system like WordPress, it would be best to use a plugin, or to include it among the core functionality of the blog/CMS if you were to write your own.
     
    Dan Schulz, Nov 23, 2007 IP