in reply to Re: Re: info from one page to another.
in thread info from one page to another.
Ok, when you hit the submit button in the browser then you get the values you sent by doing this:<form method="post" action="./yourscript.pl"> <input type="hidden" name="cinfo" value=$cinfo> <input type="Submit"> </form>
# Look this Package up on Perlmonks to learn more about it use CGI qw/:standard/; my $Query = new CGI; # Get the parameter from the Query string by the name of # the field my $cinfo = $Query->param('cinfo'); print $Query->header(); print $cinfo;
|
|---|