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
>
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
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