Hi 4bidden,
I am trying to do the same thing with teh Yahoo Weather feed but was not sure with your recommendations:
Change the yweather namespace declaration on your XSLT to xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0"
2. Remove the rss namespace declaration on your XSLT, it's not necessary
3. Change your parameter's XPath to: rss/channel/item/yweather:condition/@text
I am using php 5, and can access item fine like this
$xml = @file_get_contents("
Yahoo! Weather - Allentown, PA");
$xml = new SimpleXMLElement($xml);
$a = $xml->channel->item->title;
But if I am trying to access the yweather:condition and put in
$a = $xml->channel->item->yweather:condition->text I get errors on the :
Thansk for any help!