Hi guys.
When I fetch text from my database and try to echo it on the front end of my (client's) website, I keep getting a black diamond shaped symbol with a question mark inside it.
After I searched the net for help, I found a solution that seemed to work.
The problem was regarding this tag:
<meta charset="utf-8">
...... which is what comes with with the bootstrap template ( by default ).
And on the forum it explained how I should use this line:
<meta http-equiv="Content-Type" content="text/html; charset=iso-859-1">
So I replaced it with the above line and it now works without any black diamonds appearing.
But I have slight reservations about using the above recommended line, as I live in England.
I was under the impression that you have to use a certain line depending on where you line in the world?
I guess what i am trying to ask is: is:
<meta http-equiv="Content-Type" content="text/html; charset=iso-859-1">
... ok for me to use no matter where I live in the world?
Or could it harm my client's website (in regards to SEO, etc, etc, etc)?