Jump to content

Getting certain elements from RSS feed


buildakicker

Recommended Posts

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!

Link to comment
https://forums.phpfreaks.com/topic/257838-getting-certain-elements-from-rss-feed/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.