Files
controls-web/controls-rework/data/OLD/temp.php
2026-02-17 09:29:34 -06:00

14 lines
405 B
PHP

<php
$httpCall = 'www.google.com/ig/api?weather=' . $postal;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $httpCall);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
if (strpos($output, 'problem_cause') === false) {
$xml = new SimpleXMLElement($output);
$weather = $xml[0]->weather->current_conditions;
echo 'Current Temperature: ' . $weather->temp_f;
}
?>