in reply to Re^2: single quotes not allowing in perl
in thread single quotes not allowing in perl

What do you mean by "receiving from param array"?

Please show a working, short program (20 lines) that reproduces the problem.

  • Comment on Re^3: single quotes not allowing in perl

Replies are listed 'Best First'.
Re^4: single quotes not allowing in perl
by vasanthgk91 (Sexton) on May 24, 2013 at 13:35 UTC

    yeah I use CGI platform..So i receive form datas through param array..

    use CGI; my $cgi=new CGI; my $title=$cgi->param("title");

      So, remove CGI, and put the text you enter directly into your Perl script. Maybe the text is encoded UTF-8? Did you properly decode it? See Encode.

      We can keep guessing for a long, long time, but it will be much more efficient if you show us a short, self-contained program that shows the problem and does not require user input.

        thank u..In english language i doing this validation other language character i doing decode_entities function after i use some validation..