This word is causing me problems. Brúðkaup
In my cms, at the top of the webpage I have this line.
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
The database stores the word above as Brúðkaup and has a charset of latin1
At the top of my xml file I have the following:
<?xml version="1.0" encoding="UTF-8" ?>
Is the database using the wrong character encoding? Even if it is. Why is it that in html I specify the utf8 charset and the word shows correctly. Yet in XML I do something similar and it doesn't?
The XML is generated by PHP. I have tried to add the following in my script.
header('charset=utf-8');
This doesn't make any difference. Any ideas?