0

I have an about.php page where letters like ÆØÅ shows up as black question marks. I also have a timeline.php where i use ÆØÅ but it works fine.

Im using UTF-8 but nothing changes.

Philip
  • 53
  • 4
  • To make the browser use the correct encoding, add an HTTP header like this: header("Content-Type: text/html; charset=ISO-8859-1"); or put the encoding in a meta tag: Alternatively you could try to read from the database in another encoding (UTF-8, preferably) or convert the text with iconv(). – user6250770 Dec 03 '19 at 13:49
  • Tried to use the meta tag you said but nothing changes – Philip Dec 03 '19 at 13:53
  • Does this answer your question? [UTF-8 all the way through](https://stackoverflow.com/questions/279170/utf-8-all-the-way-through) – Dharman Dec 03 '19 at 17:40

1 Answers1

0

Change the meta tag to declare windows-1252 instead of UTF-8.

Prashant Deshmukh.....
  • 2,244
  • 1
  • 9
  • 11