include "$DOCUMENT_ROOT/wheather.inc";
function PrintWheather( $uticker ){
global $WeatherData;
?>
foreach($uticker as $key=>$val) {
foreach( $WeatherData[6] as $index=>$citycode ){
if( $val == $citycode ){
// $index is now the index of wheather for $val
$wd2 = $WeatherData[2][$index] ;
$wd3 = $WeatherData[3][$index] ;
$wd4 = $WeatherData[4][$index] ;
$wd5 = $WeatherData[5][$index] ;
$wd6 = $WeatherData[6][$index] ;
$SityWheather =<<

|
$wd4...$wd5 |
$wd6 |
EOD;
// $wd3 |
echo $SityWheather;
}
}
}
?>
} // PrintWheather
// $Sity = array ('_30710', '_27612', '_26063') ;
// , 'Каир', 'Нью-Йорк'
PrintWheather( array ('Иркутск', 'Москва', 'С-Петербург') );
?>