<?php
$xml = 'http://export.yandex.ru/weather-ng/forecasts/32150.xml'; //адрес
$rss = simplexml_load_file($xml); //пыдыщ
foreach ($rss->fact as $fact)
{
$temp = $fact->temperature; //выводим температуру
$type = $fact->weather_type; //выводим тип
$pic = $fact->image-v3; //выводим пикчакод
echo $temp;
echo '<br>';
echo $type;
echo '<br>';
echo $pic;
}
?>