DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   RSS, Web Services and SOAP (http://www.daniweb.com/forums/forum151.html)
-   -   Thumbnail through PHP RSS parser (http://www.daniweb.com/forums/thread135776.html)

simps0n Jul 21st, 2008 11:50 am
Thumbnail through PHP RSS parser
 
Hello, folks!

I'm trying to parse RSS feed and display it on my own page.
MagpieRSS looks good enough for me, but I have a little problem.

I want to display not only the title and description of each article, but the thumbnail as well.
For example, I tried to do that with this feed. Everything is alright with the title and the description, but I can't do the thumbnail thing. What I've tried is the following:
foreach ($rss->items as $item ) {
        $title = $item[title];
        $url  = $item[link];
        $description = $item[description];
        $thumbnail = $item['media:thumbnail'];
        echo "<a href=$url>$title</a></li><br>";
        echo $description;
        echo "<img src=$thumbnail>";
}
As I said before, the other things are fine, but it's not showing the thumbnail.

Thanks in advance for any help!


All times are GMT -4. The time now is 1:49 pm.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC