in reply to [untitled node, ID 142613]

If you're not using CGI.pm...

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;
cLive ;-)
  • Comment on (cLive ;-) Re: Simple question - Passing variables in query string
  • Download Code