tags:

views:

61

answers:

3

I'm doing a bookmarking-system. But when I insert the fetched title "Chapter 4. Examples for advanced use of VLC's stream output (transcoding, multiple streaming, etc...)", it looks perfectly good in the database, but when I print it out again on the display-page, it looks like this:

Chapter�4.� Examples for advanced use of VLC's stream output (transcoding, multiple streaming, etc...)

Why is this happening and how do I fix it?

The whole system is running on utf-8.

Thanks in advance! =)

A: 

What database are you running?
Does this occur with any other entries in the database or just this one?

Mark Davidson
A: 

There is a good article on Character Sets on Sun's site, while it's targeted towards Java developers, the concepts can be applied to any language.

Nathan Coffield, Dedicated Server Engineer, [email protected], HostMySite.com

Nathacof
+1  A: 

There is most likely a layer of your application not using utf-8. Try to isolate the problem by inserting known extended characters (e.g.‘’—) into the database and into your application code and see how they are displayed.

Stuart Matheson