diff --git a/index.php b/index.php index 9b7b09b..4da9d21 100644 --- a/index.php +++ b/index.php @@ -69,12 +69,12 @@ echo "

Merci de votre demande d'adhésion !

"; 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(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']) . ";" .