in reply to Re: Decode umlauts on CGI-parameters
in thread Decode umlauts on CGI-parameters
my $p_sAction = $oCGI->param( "action" ); if ( !defined( $p_sAction ) ){ #do stuff } $p_sAction = decode( 'UTF-8', $p_sAction ); $aText{'1510'} = decode_entities($aText{'1510'}); if ( $p_sAction eq $aText{'1460'} ){ #do stuff - NOW IT MATCHES correctly }
|
|---|