in reply to Re^3: HTML Form > PERL Script in UTF-8 issue
in thread HTML Form > PERL Script in UTF-8 issue

This did not work... After thorough research, apparently the problem resides within the STDIN, the variables from the FORM element are always raw, therefore never encoded. To resolve; decode the elements to UTF8. I can't seem to find a "global" method of doing so, so calling a loop that flips through the array of FORM elements will seemingly have to be my fix.
  • Comment on Re^4: HTML Form > PERL Script in UTF-8 issue

Replies are listed 'Best First'.
Re^5: HTML Form > PERL Script in UTF-8 issue
by Your Mother (Archbishop) on Sep 04, 2012 at 20:36 UTC

    This does exactly what you describe: decodes to utf-8. It's high time you show a minimal set of code to replicate the problem you're having. It's almost certainly not what you think it is.