in reply to Passing Variables to CGI script?

To retrieve the field1 and field2 values in your script.cgi -
use CGI; my $q = new CGI; my $q_field1 = $q->param('field1'); my $q_field2 = $q->param('field2');

Replies are listed 'Best First'.
Re: Re: Passing Variables to CGI script?
by Anonymous Monk on Dec 10, 2003 at 00:55 UTC
    Thanks Roger! That did the trick! This was exactly the same thing I was doing via forms useing POST ;-)