Hello, I use a particular script that is not very customizable displaying pages in two languages: English and German. In the database I coded the german charcters as HTML entities. It works fine in the pages, but in the title it displays the code, which is not very user friendly. I also tried numeric entities, but I get the same result. The used html charset is iso-8859-1. Any advice to fix the title of the page? Thank you!
I forgot to mention I tried to use HTML entities after the regular ASCII german characters were displayed as a question mark (?). The solution was quite easy, I commented the default character set from the Apache configuration (httpd.conf): # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset UTF-8 Code (markup): The AddDefaultCharset directive was causing the trouble.