I have the following php in my contact form.
// Ensure a message was entered, then sanitize it
if(!empty($_POST['cf_m']) && $_POST['cf_m']!='Enter Your Message Here')
{
$message = strip_tags($_POST['cf_m']);
}
When I receive a message by email, Norwegian characters, å, ø and æ becomes Ã¥, ø, æ
What can I do in order to show correct characters?