in reply to Re^2: Escaping then un-escaping an apostrophe
in thread Escaping then un-escaping an apostrophe
See CGI::Application/Catalyst/CGI::Prototype for different ways of simplifying this separation of concernsMain(@ARGS); exit(0); sub Main { my $query = CGI->new; my $ret = eval { DoSql($query); }; if( $@ ){ print_error_response(); } else { print_results($ret, $query); } }
|
|---|