buildakicker Posted February 26, 2012 Share Posted February 26, 2012 hi all, i am trying to just get a couple things from this RSS feed: http://www.sierraavalanchecenter.org/bottomline-rss.php I would like to grab the danger rose image on the left, the text that tells of the Avalanche danger ie... "Avalanche Danger Remains LOW..." and the date. I have tried using a few things like: $html = 'http://www.sierraavalanchecenter.org/bottomline-rss.php'; $dom = new DOMDocument; $dom->loadHTML($html); $xpath = new DOMXPath($dom); $res = $xpath->query('//div[@id=dangericon]'); if ($res->item(0) !== NULL) { $test = $res->item(0)->nodeValue; } ...without any luck. Anyone have some advice for me? thanks! Quote Link to comment https://forums.phpfreaks.com/topic/257838-getting-certain-elements-from-rss-feed/ Share on other sites More sharing options...
blacknight Posted February 27, 2012 Share Posted February 27, 2012 rss feeds are usaly xml try an xml parser Quote Link to comment https://forums.phpfreaks.com/topic/257838-getting-certain-elements-from-rss-feed/#findComment-1321562 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.