↧
Answer by KevMoe for How to display image from RSS feed using PHP
I was unable to find the image file using the content element. I broke it down piece by piece and found it in the item description. Not the best way to resolve but it'll work for now. $found =...
View ArticleAnswer by Marat Badykov for How to display image from RSS feed using PHP
Try this $found = preg_match("/img src=\"([^\"]+)\"/", $content, $match); if ($found) { echo '<div id="image"><img class="feed-item-image" src="' . (string)$match[1] . '" /></div>'; }...
View ArticleHow to display image from RSS feed using PHP
I am trying to display an image sourced from the enclosure of an rss feed item. My current code is using just the url of the feed source as the image source thereby not displaying anything. I have...
View Article