in reply to Re: CGI.pm and QUERY_STRING
in thread CGI.pm and QUERY_STRING

I just need it to use with LWP, which the site that is posting the data to me, wants me to post it back, exactly as they sent it... and add a command to the end of the query so it knows it's validating the info.

I guess I could just stick with their "sample" code, although it does use the old methods.

thx,
Richard

Replies are listed 'Best First'.
Re: Re: CGI.pm and QUERY_STRING
by cLive ;-) (Prior) on Apr 07, 2004 at 06:52 UTC
    Why not just do your test on the params and then send them back:
    get("http://their.domain/script?". $ENV{QUERY_STRING}. "&my_param=whatever");

    ?

    cLive ;-)