0 ? ($_POST['transport_option'] ?? '') : ''; if ($nombre > 0 && empty($transportOption)) { echo "

Veuillez sélectionner une option de transport.

"; } else { addAnnonce($_POST['title'], $nombre, $description, $transportOption); // VĂ©rifiez si le CAPTCHA est correct if (!isset($_POST['captcha']) || $_POST['captcha'] != ($_SESSION['captcha_num1'] + $_SESSION['captcha_num2'])) { // Redirigez vers le formulaire avec une erreur header('Location: formulaire.php?captcha_error=1'); exit(); } // Rediriger vers la page de la liste des participants header("Location: liste.php"); exit; } }