Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: How to pass a parameter between cgi's?

by dragonchild (Archbishop)
on Oct 24, 2005 at 00:25 UTC ( [id://502352]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    use CGI qw(:all);
    ...
    print "in cgi2.cgi<BR>";
    $i = param('i');
    print $i;
    
  2. or download this
    #!/usr/local/bin/perl
    use CGI;
    ...
    print "in cgi2.cgi<BR>";
    $i = $query->param('i');
    print $i;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://502352]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 15:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found