Supprimer traitement.php

This commit is contained in:
Michel Tuboeuf 2024-12-01 19:16:23 +01:00
parent 10b8da954f
commit 1973ac98b7

View File

@ -1,28 +0,0 @@
<?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;
}
}