$valeur) { $vins = $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) { $v = substr($vins, 0, strlen($vins) - 2); echo 'Votre sélection de vin(s) est : ' . $v . '
'; } } 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é ' . $v . '
'
. 'Un mail de conformation vous a été envoyé à l’adresse : ' . $tab['email'] . '