-1

Im building a website in php, and appears this "" on the top.

I was searching about this problem, and it is about ISO-8859-1, but i dont want to change my charset to UTF-8 because when i change my charset to UTF-8, all accents disappear.

Is there any way to hide this """? Changing the colour in php, or using another trick.

I tried to use UTF-8, but it doesnt work, my database table is in latin1_swedish_ci, but the only way to make all the accents appear is using ISO-8859-1.

user2744048
  • 111
  • 1
  • 2
  • 7

1 Answers1

5

It looks like your code editor set to use BOM.
Change your editor to not use BOM, and make sure you're using a good editor.

Though, for future ref and ease of you and SO, a search on this site or Google for those chars would have led you to that :)

James
  • 4,644
  • 5
  • 37
  • 48