i'm not a perl pro so i just use this common peace of code, however,
when the formfield with the terms to search for looks like this
"term1 + term2" a cgi error occurs.
how can i fiter out a "content plus" without to affect the
"splitting plus" between each search term?
thanks in advance!
Scott Geiger
i tried
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$value =~ s/+//g;
$FORM{$name} = $value;}
but it doesn't work :(
what do i have to put where to delete the literally "+"?
thanks