Hi all, i'm italian and i got a problem (i mean... a problem beyond the fact that i'm italian)...
I'm making a newsletter engine, nothing special, just a browser html editor (FCKEditor) on a page that sends the text to a list of emails.
Now... in email i receive something like: "àèò" when i write "è à ò".
I tried with:
- $text = utf8_encode($POST['text']) ;
- $text = utf8_decode($POST['text']) ;
- $text = htmlspecialchars($_POST['text'], ENT_QUOTES);
...no need to say that nothing have worked.
Anyone have an idea?
Ciao.