in reply to Re^2: LWP gives funky characters
in thread LWP gives funky characters
Then it's the first possibility. You're missing:
print $cgi->header(-type=>'text/html', -charset=>'UTF-8');
You probably have
print $cgi->header(-type=>'text/html');
which is the same as
print $cgi->header(-type=>'text/html', -charset=>'ISO-8859-1');
That tells the browser you are using one character set when you are using another.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: LWP gives funky characters
by jhanna (Scribe) on Jan 25, 2007 at 03:23 UTC |