in reply to Re: info from one page to another.
in thread info from one page to another.

Thanks.

So how would I get this to come up on the next page? Would it just be:

print "$cinfo";???

Replies are listed 'Best First'.
Re: Re: Re: info from one page to another.
by lolindrath (Scribe) on Dec 31, 2000 at 22:20 UTC
    Ok, now I see what you're asking.
    <form method="post" action="./yourscript.pl"> <input type="hidden" name="cinfo" value=$cinfo> <input type="Submit"> </form>
    Ok, when you hit the submit button in the browser then you get the values you sent by doing this:
    # 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;


    --=Lolindrath=--