I've been having a problem with \ characters in CGI parameters.
Given a parameter called string with the value \\what will I get?. and using the following code(heavily snipped)
#$cgi is cgi object
my $string = $cgi->param('string');
print $string;
This outputs \what will I get?.
I know that if you use a single quoted string \' and \\ are still interpolated to ' and \ . Is this the same issue?
Is there any workaround/solution?