'; $cityEnd = ''; // Ten day forecast $tendayStart = ''; $tendayEnd = ''; if ($weather_code) { $fp = fopen("http://www.weather.com/outlook/recreation/boatandbeach/local/$weat her_code", "r"); socket_set_timeout($fp, 2); while (!feof($fp)) { $RetrieveFile .= fgets($fp,1024); } fclose($fp); } // Get 10 day forecast if ($weather_code) {
$fp2 = fopen("http://www.weather.com/outlook/recreation/boatandbeach/tenday/$wea ther_code", "r"); socket_set_timeout($fp2, 2); while (!feof($fp2)) { $RetrieveFile2 .= fgets($fp2,1024); } fclose($fp2); } // Get City Name $tendayData = eregi("$tendayStart(.*)$tendayEnd", $RetrieveFile2, $tendayPrint); // Acquire The Data $gotTenDay = str_replace('"; $gotTenDay = "" . $gotTenDay . ""; $gotWeather = $gotCityName . $gotTenDay; $gotWeather = ereg_replace("\n","",$gotWeather); //remove newlines $gotWeather = ereg_replace("\r","",$gotWeather); //remove returns $gotWeather = ereg_replace("\t","",$gotWeather); //remove tabs return $gotWeather; } ?>