quest-rando/traitement.php

29 lines
1.0 KiB
PHP
Raw Normal View History

2024-11-24 11:31:15 +01:00
<?php
include 'annonces.php';
session_start();
// 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();
}
if ($_SERVER['REQUEST_METHOD'] === 'POST' && !empty($_POST['title'])) {
// $nombre = isset($_POST['not_present']) ? 0 : ($_POST['nombre'] ?? 0);
$nombre = isset($_POST['nombre']) ? intval($_POST['nombre']) : null;
$description = $_POST['description'] ?? '';
$transportOption = $nombre > 0 ? ($_POST['transport_option'] ?? '') : '';
if ($nombre > 0 && empty($transportOption)) {
echo "<p style='color:red;'>Veuillez sélectionner une option de transport.</p>";
} else {
addAnnonce($_POST['title'], $nombre, $description, $transportOption);
// Rediriger vers la page de la liste des participants
header("Location: liste.php");
exit;
}
}