Folder reorganize 1

This commit is contained in:
Rucus
2026-02-17 12:44:37 -06:00
parent ec99d85bc2
commit f0ae0ab905
17427 changed files with 2071 additions and 1059030 deletions

14
data/OLD/temp.php Normal file
View File

@@ -0,0 +1,14 @@
<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;
}
?>