Hi! I’m having a little problem here, and I wanted to ask if anybody here had experienced the same or had a solution to it.
I’m making a web site using php. Now, in my index.php I include a file, which again includes another file. So the structure is like this:
Index -> Included file 1 -> Included file 2
The problem appears when I type special characters like “æ” “ø” and “å”. If I type them in Index or in “Included file 1”, they work fine. But if I type them in “Included file 2”, they appear as " æ", “ø” and “Ã¥”.
In index.php, I tried to change “charset=iso-8859-1” to charset=utf-8". This turned everything upside down. The special characters in “Included file 2” worked fine, but in “Index” and “Included file 1”, they were shown as “?”.
Does anybody knows why this happens, or how I can solve this problem so the special characters works fine at all levels?