in reply to [untitled node, ID 142613]
Also, if you want to send non-word chars in the query string, remember to encode it first:
$qs =~ s/ /+/g; $qs =~ s/(\W)/sprintf("%%%x", ord($1))/eg; [download]