Uploading website changes my quotes, commas etc.. into question marks

R

Ronx

Your server is including this line in the HTTP headers it sends with the
page:

Content-Type: text/html; charset=UTF-8

This overwrites the character set setting in your page, and causes some
characters, such as smart quotes, to display as ? marks. These characters
should be coded into your page as entities or numeric references.

See www.rxs-enterprises.org/tests/pages/symbols.htm for more details.
 
Top