Ajout d'un numéro de demande

This commit is contained in:
Adrien Bourmault 2022-05-08 21:17:00 +00:00
parent c15bb88403
commit ae9554d532
1 changed files with 6 additions and 3 deletions

View File

@ -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 "<h1>Merci de votre demande d'adhésion !</h1>";
echo "<p>Votre numéro de demande est le " . $numero_pre_adh ."</p><br/>";
echo "<p><b>Libre en Communs</b> 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.</p><br/>";
$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 {