On 3/30/07, Anthony Gardner <[EMAIL PROTECTED]> wrote:
Within the called script, we make a call to $cgi->Vars but this is returning the query string from the initial request.
That's just a problem with the way CGI.pm is coded. It essentially doesn't work for subrequests or internal redirects because of the massive use of global variables. A call to CGI::_reset_globals should fix it. - Perrin