Legend
Legend

Reputation: 116940

Character encoding problem?

I was testing a webpage that I designed on my Android 2.1 browser but it complains with the following:

error on line 1 at Column 39: Unsupported encoding ISO8859-1

Is there anyway to solve this problem?

Upvotes: 1

Views: 239

Answers (1)

bcosca
bcosca

Reputation: 17555

header('Content-Type: text/html; charset=iso-8859-1');

and/or

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Upvotes: 2

Related Questions