Can anyone help with with special characters and php.
The following php:
$IHaventReceivedCode = "Je n'ai pas reçu mon code";
is showing as:
Je n'ai pas re�u mon code
I have tried adding to the file at the top:
ini_set('default_charset', 'UTF-8');
header('Content-Type: text/html; charset=UTF-8');
and also to the head tag:
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
However, the character fails to show.
Any ideas?