From c5797b9730628019a48767eabe54f301d519e297 Mon Sep 17 00:00:00 2001 From: Stephen Jianu Date: Mon, 17 Mar 2025 20:21:15 -0500 Subject: [PATCH] Display a 7 day forecast instead of just tomorrow's high temperature --- index.php | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) 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. -- 2.39.5