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!!!
:eek:
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