Moins de majuscules

This commit is contained in:
Adrien Bourmault 2022-05-05 17:17:46 +02:00
parent a1137cc6fc
commit 27c23af6a4
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 5 additions and 5 deletions

View File

@ -69,18 +69,18 @@
echo "<h1>Merci de votre demande d'adhésion !</h1>";
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 = str_replace(';', ' ', $_POST['nom']) . ";" .
str_replace(';', ' ', $_POST['prenom']) . ";" .
str_replace(';', ' ', $_POST['adresse']) . ";" .
$content = strtoupper(str_replace(';', ' ', $_POST['nom'])) . ";" .
strtoupper(str_replace(';', ' ', $_POST['prenom'])) . ";" .
strtoupper(str_replace(';', ' ', $_POST['adresse'])) . ";" .
str_replace(';', ' ', $_POST['codepostal']) . ";" .
str_replace(';', ' ', $_POST['ville']) . ";" .
strtoupper(str_replace(';', ' ', $_POST['ville'])) . ";" .
str_replace(';', ' ', $_POST['mail']) . ";" .
str_replace(';', ' ', $_POST['mailalec']) . ";" .
str_replace(';', ' ', $_POST['xmppalec']) . ";" .
str_replace(';', ' ', $_POST['cotisation']) . ";" .
str_replace(';', ' ', $_POST['mode']);
file_put_contents($filepath . "pre_adhesion" . date("Y-m-d") . rand(111111, 999999), strtoupper($content));
file_put_contents($filepath . "pre_adhesion" . date("Y-m-d") . rand(111111, 999999), $content);
} else {