Weather Forecast

[insert_php]
$keyword = $_GET[‘keyword’];
if (empty($keyword)){
$keyword = ‘new york weather’;
//echo $keyword;
};
$xmlStr = file_get_contents(‘5000_us_5col_key.xml’);
$xml = new SimpleXMLElement($xmlStr);

$cityPath = $xml->xpath(“//location[keyword=’$keyword’]/city/text()”);
$citydashPath = $xml->xpath(“//location[keyword=’$keyword’]/citydash/text()”);
$statePath = $xml->xpath(“//location[keyword=’$keyword’]/state/text()”);
$stateabbrPath = $xml->xpath(“//location[keyword=’$keyword’]/stateabbr/text()”);
$countydashPath = $xml->xpath(“//location[keyword=’$keyword’]/countydash/text()”);

$city = reset($cityPath);
$citydash = reset($citydashPath);
$state = reset($statePath);
$stateabbr = reset($stateabbrPath);
$countydash = reset($countydashPath);

//echo reset($state) . “,” . reset($county);
//echo reset($state) . “,” . reset($county);

echo ”

$city,$stateabbr Weather Forecast

Get the very latest weather forecast, including the 7-day outlook, temperature, humidity, precipitation for your area.

You can also choose another location. Search for city or zip code.


“;

[/insert_php]