Hi all
I save my content using htmlentities() and pull the content out on the front end however I am experiencing issues with certain characters not displaying on the webpage and instead, a black diamond is appearing.
This is what I have stored in my database:
<span style="font-weight: bold; text-decoration: underline;">Rücktrittsversicherung<br />
Everything displays fine with the exception of the umlaut - this is happening throughout the page.
Any idea why the ü is not displaying as it should?
I pull out my content as follows:
echo html_entity_decode($content);
Thanks in advance.
Doug