pritoshpandey has asked for the wisdom of the Perl Monks concerning the following question:
a.pl:<html><head></head> <body> <form name='form' action = 'a.pl' method = 'get'> <input type="text" name="name" size="8" value="zzzz"> <input type = 'submit' value = 'SUBMIT'> </form></body></html>
Please help. Thanks in advance.#!/usr/local/bin/perl -w use CGI qw(:standard); my $name = undef; $name = param("name"); print "value = ",$name, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: get parameter from html page
by shmem (Chancellor) on Dec 22, 2006 at 09:34 UTC | |
|
Re: get parameter from html page
by SFLEX (Chaplain) on Dec 22, 2006 at 12:57 UTC | |
by AK108 (Friar) on Dec 23, 2006 at 02:11 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |