Eva G.
Eva G.

Reputation: 135

Special characters being shown as text instead of processed as HTML

I have tried to search for the answer to my question without any luck.

I have entered special characters in Phpmyadmin as their HTML encodings, e.g. an e with acute accent is entered like this:

é

But on my website it is being rendered as text, so instead of the e with acute accent I see the HTML encoding. It does not get processed as HTML:

J'ai souvent été appelé peu réaliste.

Here is the link: http://www.personality-types.org/fr/

Why does this happen and how can I get it to be processed as html?

Thank you in advance for your reply.

Upvotes: 0

Views: 58

Answers (1)

DDA
DDA

Reputation: 161

your page has charsert utf-8 wich is a good thing, but your page has to be saved in utf-8, your connection has to be set in utf-8, and your database has also to be set in utf-8. This way, no probleme concerning characters. If you type your texte directly in phpmyadmin, feel free to type all accents without trying to convert it.

Upvotes: 1

Related Questions