Skip to content

Instantly share code, notes, and snippets.

View seanwittmeyer's full-sized avatar

seanwittmeyer seanwittmeyer

View GitHub Profile
<?php
$handle = fopen("http://apple.accuweather.com/adcbin/apple/Apple_Weather_Data.asp?zipcode=80526", "r");
$contents = stream_get_contents($handle);
fclose($handle);
$weathersrc = new SimpleXMLElement($contents);
echo $weathersrc->CurrentConditions[0]->Temperature.'°F and '.$weathersrc->CurrentConditions[0]->WeatherText; ?>