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

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

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

Replies are listed 'Best First'.
Re^5: single quotes not allowing in perl
by Corion (Patriarch) on May 24, 2013 at 13:43 UTC

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