Results 1 to 2 of 2

Thread: rss fetch tool that displays images and..

  1. #1
    Join Date
    Aug 2009
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Talking rss fetch tool that displays images and..

    I have found several good scripts out there rssscroller, rssbox, and simplepie (the latter which seems the folks think it's odd for a newbie to be asking for help) anyway, I have been able to work with the html and/or java (ajax), php to relocate/place the content on my web pages without a hitch.

    What I would like to be able to do, is call the rss feed, strip the text out (maybe leave the title) and display only the images either one at a time or determined by time sort of thing... the one I had some fun with I believe was rssbox-scroller (I think was the name) and rss-scroller....

    Any help or ideas anyone?

    Thanks!!!

  2. #2
    Join Date
    Aug 2009
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Here's what I have so far...

    I modified the rssbox script and added:

    //Adding Image
    var link = document.createElement('IMG')
    link.className = 'rssBoxImage';
    image.src = ImageURL;
    div.appenChild(image);


    In the readRSS.php I added this line:

    echo preg_replace("/[\r\n]/"," ",$value["image"])."##"; // Image

    in the "foreach loop"

    I'm getting nothing....

    I can post everything I've doen so far if that would be of any further value

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •