
November 27th, 2012, 08:41 AM
|
 |
pollyanna
|
|
Join Date: Jul 2012
Location: Germany
|
|
Hi,
yeah, that's an interesting error message. So do you have a particular question? What's your HTML?
Like the message already says, you haven't specified your character encoding. So the browser doesn't know how to interpret the bits and bytes you're sending him. It has to guess.
Set the encoding in the Content-Type header with either your webserver or PHP:
PHP Code:
header('Content-Type: text/html; charset=utf-8');
(replace "utf-8" with the actual encoding)
|