Suppression des é
This commit is contained in:
parent
27c23af6a4
commit
c15bb88403
10
index.php
10
index.php
|
@ -69,12 +69,12 @@
|
|||
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 = strtoupper(str_replace(';', ' ', $_POST['nom'])) . ";" .
|
||||
strtoupper(str_replace(';', ' ', $_POST['prenom'])) . ";" .
|
||||
strtoupper(str_replace(';', ' ', $_POST['adresse'])) . ";" .
|
||||
$content = 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']) . ";" .
|
||||
strtoupper(str_replace(';', ' ', $_POST['ville'])) . ";" .
|
||||
str_replace(';', ' ', $_POST['mail']) . ";" .
|
||||
strtoupper(iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['ville']))) . ";" .
|
||||
iconv('utf-8','ASCII//IGNORE//TRANSLIT',str_replace(';', ' ', $_POST['mail'])) . ";" .
|
||||
str_replace(';', ' ', $_POST['mailalec']) . ";" .
|
||||
str_replace(';', ' ', $_POST['xmppalec']) . ";" .
|
||||
str_replace(';', ' ', $_POST['cotisation']) . ";" .
|
||||
|
|
Loading…
Reference in New Issue