Konu Başlığı: hava durumu çok acil
View Single Post
Sponsorlu Bağlantılar
Zoque.Forum
Advertisement
Old 25.06.2006   #13 (permalink)
uzaytek
 
uzaytek's Avatar
 
Üyelik Tarihi: 06.07.2001
Yer: Ankara
Yaş: 33
Mesaj: 679
Re: hava durumu çok acil

eger gosterilmek istenen sadece http://www.meteor.gov.tr/2003/iller/set7/ adresindeki resimler ise.

PHP Code:
/**
 * 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;    


uzaytek şu an çevrimdışı   Mesajdan alıntı yaparak yeni bir cevap ekleyin