eger gosterilmek istenen sadece
http://www.meteor.gov.tr/2003/iller/set7/ adresindeki resimler ise.
/**
* returns weather information for Ankara, Istanbul, Izmir
*
* fetch weather images from meteor.gov.tr
*
*/
function get_weather_data() {
$cities = array(
'ANKARA' => 'http://www.meteor.gov.tr/2003/iller/set7/ankara1.aspx',
'İSTANBUL' => 'http://www.meteor.gov.tr/2003/iller/set7/istanbul1.aspx',
'İZMİR' => 'http://www.meteor.gov.tr/2003/iller/set7/izmir1.aspx',
);
$output .= '<br><table id="weather"><tr>';
foreach ($cities as $city=>$address) {
if (@fopen($address,"r")) {
$output .= "<td align='center'>$city<br><img src='$address' vspace='4' alt='$city' title='$city' border=0></td>";
}
}
$output .= '</tr></table>';
return $output;
}