in reply to Re: HTML Form > PERL Script in UTF-8 issue
in thread HTML Form > PERL Script in UTF-8 issue
Your graph was very helpful, visualizing it we were able to figure out that the problem was underlying with the decoding of the variable.
$input{'formfieldname'} = Encode::decode('UTF-8', $input{'formfieldname'});Fixed it right up. Thank you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: HTML Form > PERL Script in UTF-8 issue
by Your Mother (Archbishop) on Aug 29, 2012 at 22:31 UTC | |
by Anonymous Monk on Aug 30, 2012 at 03:25 UTC | |
by Jishanator (Initiate) on Sep 04, 2012 at 14:52 UTC | |
by Your Mother (Archbishop) on Sep 04, 2012 at 20:36 UTC | |
|
Re^3: HTML Form > PERL Script in UTF-8 issue
by remiah (Hermit) on Aug 30, 2012 at 10:29 UTC | |
by Anonymous Monk on Aug 30, 2012 at 20:09 UTC | |
by Jishanator (Initiate) on Aug 30, 2012 at 20:35 UTC | |
by remiah (Hermit) on Aug 30, 2012 at 22:25 UTC |