I'm trying to get a php file to display Danish characters.
This code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Ø
</body>
</html>
in a .html file works fine.
in a .php file the Ø is corrupted.
There's no actual PHP code in the file, so it's just a matter of the PHP parser changing it. My default charset in php.ini is set up correctly.
What do i need to do?
Thanks
Russell.