AW: embperl and utf-8

2014-06-25 Thread richter
l.apache.org > Betreff: Re: embperl and utf-8 > > Hi Michael, > > Le 18/06/2014 13:03, Michael Stevens a écrit : > > How can we get embperl working nicely with utf-8? > > > > I've set the content-type on my pages, I still find that in order to > > get >

Re: embperl and utf-8

2014-06-22 Thread Jean-Christophe Boggio
Hi Michael, Le 18/06/2014 13:03, Michael Stevens a écrit : > How can we get embperl working nicely with utf-8? > > I've set the content-type on my pages, I still find that in order to get > utf-8 form submissions processed correctly I have to add something like > this: > > for my $key (keys %fda

embperl and utf-8

2014-06-18 Thread Michael Stevens
Hi, How can we get embperl working nicely with utf-8? I've set the content-type on my pages, I still find that in order to get utf-8 form submissions processed correctly I have to add something like this: for my $key (keys %fdat) { $dat{$key} = Encode::decode_utf8($fdat{$key}); } Is there a