Forum Moderators: coopster
I personally haven't used it but it seems legit. If this isn't what you are looking for, it shouldn't be too hard to implement your own, especially if you have php 5 available to you.
$xml = new SimpleXMLElement(file_get_contents("http://weather.yahooapis.com/forecastrss?p=07070"));
echo 'Description: '.$xml->channel->description.'<br/><br/>';
echo $xml->channel->item->description;
Read the information posted at the link I have provided you above for more information on how to work with simplexml.