http://www.perlmonks.org?node_id=1034062


in reply to Re: language Decoding problem..?
in thread language Decoding problem..?

thank u

use HTML::Entities; use Encode; my $title_checking=$cgi->param("title_checking"); $title_checking=decode_entities($title_checking); $title_checking=encode('UTF-8',$title_checking); $title_checking=$prl->trim($title_checking); print "$title_checking";

It's working...In my server I stored this format value then compare it's working..great thanks