From 4ecb2b62cae9a4ff3bb214ee18d65ed93cb169b9 Mon Sep 17 00:00:00 2001 From: pourchot Date: Wed, 12 Apr 2023 11:24:21 +0200 Subject: [PATCH] 12 Avril --- BACKEND/PHP/bonjour.php | 7 +++++++ BACKEND/PHP/compte.php | 17 +++++++++++++++++ BACKEND/PHP/tableau.php | 9 +++++++++ 3 files changed, 33 insertions(+) create mode 100644 BACKEND/PHP/bonjour.php create mode 100644 BACKEND/PHP/compte.php create mode 100644 BACKEND/PHP/tableau.php diff --git a/BACKEND/PHP/bonjour.php b/BACKEND/PHP/bonjour.php new file mode 100644 index 0000000..f760a6f --- /dev/null +++ b/BACKEND/PHP/bonjour.php @@ -0,0 +1,7 @@ + + + + hello world"; + ?> + + \ No newline at end of file diff --git a/BACKEND/PHP/compte.php b/BACKEND/PHP/compte.php new file mode 100644 index 0000000..6add2ca --- /dev/null +++ b/BACKEND/PHP/compte.php @@ -0,0 +1,17 @@ + + + + "; + for($i=1;$i<51;$i++){ + if ($i%10==0){ + echo "

"; + } + if($i%2==0){ + echo "$i "; + } else{ + echo "$i "; + } + }echo "

"; + ?> + + \ No newline at end of file diff --git a/BACKEND/PHP/tableau.php b/BACKEND/PHP/tableau.php new file mode 100644 index 0000000..6596b85 --- /dev/null +++ b/BACKEND/PHP/tableau.php @@ -0,0 +1,9 @@ + + + + " + } + ?> + + \ No newline at end of file