citromatik has asked for the wisdom of the Perl Monks concerning the following question:
Hi all
I'm pretty sure that I'm missing something evident, but I can't see what. Why is the "+" character stripped from the CGI parameters?
use strict; use warnings; use CGI; my $q = new CGI; my $data = $q->param("gff"); print "$data\n";
For debugging I'm running the script from the command line :
perl perlcgi/getPlot.pl gff='kk_+ kk_-'
The output that I obtain is:
kk_ kk_-
Thanks in advance!
citromatik
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: "+" stripped from CGI params
by jettero (Monsignor) on Dec 21, 2007 at 13:41 UTC | |
by ikegami (Patriarch) on Dec 21, 2007 at 13:55 UTC | |
by amarquis (Curate) on Dec 21, 2007 at 14:20 UTC | |
Re: "+" stripped from CGI params
by hawtin (Prior) on Dec 22, 2007 at 13:56 UTC |