in reply to Re: param() and param value that contains &
in thread param() and param value that contains &

I cannot control the formatting of the URL as it is generated by another system.

I think I will have to use $ENV{'QUERY_STRING'} and try retrieving the params and values that way.

Thanks for your input,
Gary

  • Comment on Re^2: param() and param value that contains &

Replies are listed 'Best First'.
Re^3: param() and param value that contains &
by ikegami (Patriarch) on Nov 11, 2010 at 05:13 UTC

    Indeed. CGI parses the URL queries as it they were x-www-form-urlencoded format(*). Since your URL queries is in another format, you'll have to find yourself an appropriate parser for that format.

    * — With some useful deviations that aren't relevant here.