I a displaying in a website 2 types of text:
- One coming from PHP (either reading from SQL or simply hardcoded)
- Plain HTML written text
In order to display some Spanish special characters properly, I added the following:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
However, now the HTML text does not display the special characters well. The Spanish ñ is showing ñ.
Any solution to comply with both PHP and HTML?
Thanks