in reply to problem with CGI
#!/usr/bin/perl -w use strict; use CGI; my $cgi = new CGI; print $cgi->param('key1'); ### prints: value1 print $cgi->param('key2'); ### prints: value2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: problem with CGI
by b1rd (Novice) on Sep 30, 2003 at 13:23 UTC | |
by kutsu (Priest) on Sep 30, 2003 at 17:53 UTC |