From 4f71cbdf93c3b6bf919067d5f6b7329a5ef9c058 Mon Sep 17 00:00:00 2001 From: JunkJumper Date: Mon, 5 Oct 2020 10:53:05 +0200 Subject: [PATCH] "exo 1 tp3 ok + format" --- 2020-2021/TD3/anim.css | 9 +++ 2020-2021/TD3/check.php | 131 ++++++++++++++++++++++------------------ 2020-2021/TD3/post.php | 9 +++ 3 files changed, 91 insertions(+), 58 deletions(-) diff --git a/2020-2021/TD3/anim.css b/2020-2021/TD3/anim.css index 3f9f7a5..3adfb08 100755 --- a/2020-2021/TD3/anim.css +++ b/2020-2021/TD3/anim.css @@ -1,3 +1,12 @@ +/** + * @ Author: JunkJumper + * @ Link: https://github.com/JunkJumper + * @ Copyright: Creative Common 4.0 (CC BY 4.0) + * @ Create Time: 05-10-2020 10:29:38 + * @ Modified by: JunkJumper + * @ Modified time: 05-10-2020 10:52:29 + */ + .radial-timer { overflow: hidden; height: 144px; diff --git a/2020-2021/TD3/check.php b/2020-2021/TD3/check.php index 6dc126c..6cddc61 100644 --- a/2020-2021/TD3/check.php +++ b/2020-2021/TD3/check.php @@ -1,76 +1,91 @@ + + + p#rep { + font-weight: bold; + color: red; + text-align: center; + } + - $valeur) { + $vins = $valeur . ' , '; } - if(preg_match("#[a-zA-Z_]#", $tab['nom']) && preg_match("#[a-zA-Z_]#",$tab['prenom'])) { - $checkN = true; + echo '

Votre nom est : ' . $tab['nom'] . '

'; + echo '

Votre prenom est : ' . $tab['prenom'] . '

'; + if ($tab['sexe'] != null) { + echo '

Votre genre est : ' . $tab['genre'] . '

'; } + if ($vins != null) { + echo '

Votre sélection de vin(s) est : ' . $vins . '

'; + } +} else { + echo '

Votre nom ou prénom n\'est pas correct.

'; +} - if(preg_match("#@#", $tab['email']) && preg_match("#.#",$tab['email']) && preg_match("#[a-zA-Z]{2}@#", $tab['email']) && preg_match("#@[a-zA-Z]{2}.#",$tab['email'])) { - $checkE = true; - } +if ($checkE) { + echo '

Votre mail est : ' . $tab['email'] . '

'; +} else { + echo '

Votre email n\'est pas correct.

'; +} - if($checkN) { - foreach ($tab['vins'] as $key => $valeur) { - $vins = $valeur .' , '; - } - - echo '

Votre nom est : ' .$tab['nom'] .'

'; - echo '

Votre prenom est : ' .$tab['prenom'] .'

'; - if ($tab['sexe'] != null) {echo '

Votre genre est : ' .$tab['genre'] .'

';} - if ($vins != null) {echo '

Votre sélection de vin(s) est : ' .$vins .'

';} - } else { - echo '

Votre nom ou prénom n\'est pas correct.

'; - } - - if($checkE) { - echo '

Votre mail est : ' .$tab['email'] .'

'; - } else { - echo '

Votre email n\'est pas correct.

'; - } - - if($checkE && $checkN) { - echo '

Bonjour ' .$denom .' ' .$tab['nom'] .' ' .$tab['prenom'] .',
- Nous vous remercions d’avoir commandé ' .$vins .'
' - .'Un mail de conformation vous a été envoyé à l’adresse : ' .$tab['email'] .'

'; - } +if ($checkE && $checkN) { + echo '

Bonjour ' . $denom . ' ' . $tab['nom'] . ' ' . $tab['prenom'] . ',
+ Nous vous remercions d’avoir commandé ' . $vins . '
' + . 'Un mail de conformation vous a été envoyé à l’adresse : ' . $tab['email'] . '

'; +} ?> -



- + + \ No newline at end of file diff --git a/2020-2021/TD3/post.php b/2020-2021/TD3/post.php index c04f326..8512fe9 100644 --- a/2020-2021/TD3/post.php +++ b/2020-2021/TD3/post.php @@ -1,3 +1,12 @@ + +