From: Stephen Jianu Date: Sun, 23 Mar 2025 21:19:14 +0000 (-0500) Subject: Remove unused variable X-Git-Url: https://stephenjianu.com/gitweb/?a=commitdiff_plain;h=1b0a873ae72a08fe392c87a231373aa1faf33f35;p=reasonableweather.git Remove unused variable --- diff --git a/index.php b/index.php index e9304c3..8ee9bbf 100644 --- a/index.php +++ b/index.php @@ -17,7 +17,6 @@ echo "
".$description."
".$json["current"]["temperature_2m"]."° F\n"; echo "\n"; echo "

Your 7 day forecast for Park Ridge is:

\n"; - $tempNow = $json["current"]["temperature_2m"]; for ($i = 0; $i < 7; $i++) { $code = $json["daily"]["weather_code"][$i]; $description = $jsonDescriptions[$code]["day"]["description"];