From: Stephen Jianu Date: Tue, 18 Mar 2025 01:21:15 +0000 (-0500) Subject: Display a 7 day forecast instead of just tomorrow's high temperature X-Git-Url: https://stephenjianu.com/gitweb/?a=commitdiff_plain;h=c5797b9730628019a48767eabe54f301d519e297;p=reasonableweather.git Display a 7 day forecast instead of just tomorrow's high temperature --- diff --git a/index.php b/index.php index feecdac..1f9a0d1 100644 --- a/index.php +++ b/index.php @@ -7,17 +7,27 @@

-

Tomorrow's temperature high in Park Ridge is:

-

- -

+

Your 7 day forecast for Park Ridge is:

+ "; + echo "

"; + echo "".date('l', strtotime($json["daily"]["time"][$i])); + echo "

"; + echo "High: ".$tempHighConverted."°"; + echo "
"; + echo "Low: ".$tempLowConverted."°"; + echo ""; + } + echo "

"; + ?> This site uses the MJM weather system, the most accurate weather system in the world, for measuring temperature. We source our weather from the National Weather Service and give you pure, unmodified data.