On Mon, Jul 05, 2004 at 12:53:38PM +1000, Michael Kraus wrote:
> Thanks for correcting my terms... Yes, URI escaped... But is there a way
> of using the two functions together?
> 
> (Or would I need to use an intermediate file?)

Sorry, I thought you were asking how to unescape the values.

There's no unescaped version of save_parameters, so you'd have to use that
intermediate file, or just do it yourself - isn't it just this:

  foreach my $p ($q->param) {
    printf $filehandle "%s=%s\n", $p, $q->param($p);
  }

since CGI handles all the unescaping for your within param.

Cheers,
Gavin

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to