setParams($params);
$city = $params['city'];
include 'GoogleMeteo.php';
echo '
';
echo '
'.$present_weather.'
'.$future_weather1.'
'.$future_weather2.'
';
}
private function setParams($params){
$this->params = $params;
}
public static function start($params){
$weather = new weather($params);
}
}