Wednesday 30 December 2009 @ 6:55 am
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
Continuing the never ending saga of perl / utf horror:
<form method=”post” accept-charset=”utf-8″ action=”…”>
Well, I never used it… and my web app works.
Is this accept-charset really needed? Do you know?
See also:
- Utf8 in web perl application (LAMP) – binmode, charset
- Utf8 in web perl application (LAMP) – dbi, mysql
- Unicode horror – nice tool to convert
- Utf8 in web perl application (LAMP)
- Utf8 in web perl application (LAMP) – part 2 – Encode


Yes, I’ve used it.
One place where you have to use it is if you want to include a form in a ISO-8859-1 page that will be processed by a more modern CGI/FastCGI app that expects utf8.
Quite common on mixed legacy/new environments.