From 7a8b55262c3b5d84a066a31cbfed89e2025c6e26 Mon Sep 17 00:00:00 2001 From: FlyInTheBox Date: Wed, 14 Dec 2022 13:53:38 +0100 Subject: [PATCH] l --- Zadanie 14.12.2022/index.php | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Zadanie 14.12.2022/index.php diff --git a/Zadanie 14.12.2022/index.php b/Zadanie 14.12.2022/index.php new file mode 100644 index 0000000..007ef40 --- /dev/null +++ b/Zadanie 14.12.2022/index.php @@ -0,0 +1,52 @@ + + + + + + + Tabliczka mnożenia + + + + + + ' . $col . ''; + } + for ($col = 1; $col <= 100; $col++) { + echo ''; + for ($row = 1; $row <= 100; $row++) { + if ($col != $row) { + echo ''; + } else { + echo ''; + } + } + echo ''; + } + echo ''; + ?> +
X
' . $col . '' . ($col * $row) . '' . ($col * $row) . '
+ + \ No newline at end of file