I have a question regarding the POST values I get back when I post a HTML form like this:
<form action="" method="POST">
<input type="text" name="test">
<input type="submit">
</form>
If I type in jöachi@æøåèÆ in the input field and do a var dump on the $_POST value, I get this:
array (size=1)
'test' => string 'jöachi@æøåèÆ' (length=17)
In the result you can see that the è sign have been replaced with the ISO Latin-1 code è
How can I make it so that it doesn't do that?
The encoding in my page is ISO-8859-10, and I tried to change it to be UTF-8, but with no luck.
I also thought it might be something to do with magic_quotes in my apache, but that isn't enabled.
Any help appreciated