Stathy Touloumis wrote: >Has anyone experienced issues with retrieving data when POSTed by a form >whith an action parameter that has a query string attached to it? On rare >occasion it seems that the posted data is not available.
I recently changed form handling and got bitten by query strings. My previous code used CGI.pm to parse the arguments (but not to run my scripts). When I changed to use Apache::Request to parse the arguments I found that I was seeing both the query string arguments and the posted argumnets. Using Apache::Request I believe I reliably see all of the query string and posted arguments. I have Apache 1.3.26 / mod_perl 1.27 / Apache::Registry from CPAN version 2.01. My C compiler is gcc 2.96 I have libapreq version 1.1 (needed for Apache::Request) Rob Lambden