in reply to Passing Variables in CGI
To retrieve the values it's easiest to use CGI.pm like the following.<form action="/perl/scriptname" method="post"> <input type="text" name="a" value=""> <input type="submit" value="Submit"> </form>
There are many ways to retrieve values. This is the easiest one for me, others may have their own opinion.use CGI; my $q = CGI->new(); my $a = $q->param('a');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid) RE(2): Passing Variables in CGI
by Ovid (Cardinal) on Jul 25, 2000 at 00:55 UTC |