zipCode = $zipCode; $this->getForecast(); $this->getWeather(); } public function getForecast(){ $url = "http://wsf.cdyne.com/WeatherWS/Weather.asmx/GetCityForecastByZIP"; $url .= "?ZIP=" . $this->zipCode; $this->forecast = simplexml_load_file($url) or die("ERROR"); } public function getWeather(){ $url = "http://wsf.cdyne.com/WeatherWS/Weather.asmx/GetCityWeatherByZIP"; $url .= "?ZIP=" . $this->zipCode; $this->weather = file_get_contents($url) or die("ERROR"); } } $mantua= new Weather("08051"); header('Content-type: text/xml'); echo $mantua->weather; ?>