JaredF has asked for the wisdom of the Perl Monks concerning the following question:
##############CGI1.CGI############### #!/usr/local/bin/perl use CGI qw(:all); print header; print "now in cgi1.cgi<BR>"; print q(<A HREF="./cgi2.cgi?i=99">go to cgi2</A>); ##############CGI2.CGI############### #!/usr/local/bin/perl use CGI qw(:all); print header; print "in cgi2.cgi<BR>"; $i = $query->param('i'); print $i;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to pass a parameter between cgi's?
by dragonchild (Archbishop) on Oct 24, 2005 at 00:25 UTC | |
by JaredF (Initiate) on Oct 24, 2005 at 02:28 UTC |