diff --git a/index.php b/index.php index 4da9d21..67030a3 100644 --- a/index.php +++ b/index.php @@ -63,13 +63,16 @@ $captcha_value = rand(0,9) . rand(0,9) . rand(0,9) . rand(0,9) . rand(0,9) . rand(0,9); $captcha_data = shell_exec("/srv/captcha/captcha.sh " . $captcha_value); + + $numero_pre_adh = rand(111111, 999999); if(isset($_POST['captcha']) && $_POST['captcha'] == $_POST['captcha_value'] && $_POST['mail'] == $_POST['mailconfirm']) { echo "

Merci de votre demande d'adhésion !

"; + echo "

Votre numéro de demande est le " . $numero_pre_adh ."


"; echo "

Libre en Communs vous remercie de votre engagement. Vous recevrez la réponse à votre demande par courriel prochainement, accompagnée des instructions à suivre pour régler votre cotisation le cas échéant.


"; - $content = strtoupper(iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['nom']))) . ";" . + $content = $numero_pre_adh . "|" . str_replace("|", " ",strtoupper(iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['nom']))) . ";" . strtoupper(iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['prenom']))) . ";" . strtoupper(iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['adresse']))) . ";" . str_replace(';', ' ', $_POST['codepostal']) . ";" . @@ -78,9 +81,9 @@ str_replace(';', ' ', $_POST['mailalec']) . ";" . str_replace(';', ' ', $_POST['xmppalec']) . ";" . str_replace(';', ' ', $_POST['cotisation']) . ";" . - str_replace(';', ' ', $_POST['mode']); + str_replace(';', ' ', $_POST['mode'])); - file_put_contents($filepath . "pre_adhesion" . date("Y-m-d") . rand(111111, 999999), $content); + file_put_contents($filepath . "pre_adhesion" . date("Y-m-d") . $numero_pre_adh, $content); } else {