Hi fellow developers,
I am having a weird issue on my site. I can't make pages use charset "utf-8"!
Take a look at this simple test page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test Document</title>
</head>
<body>
<p>Some Non-Western Characters: å ä ö Å Ä Ö</p>
</body>
</html>
This page should by default be display using Unicode character encoding in the browser, but the browser defaults to ISO-8859-1!!
Yes, the syntax is right! I have been trying this page out on two more servers and it's working nice.
Is there some setting in the php.ini that needs to be changed by the host?
Any help is appreciated!