ghosh123 has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monk,
I have a cgi perl script in which I have the following HTML form data embedded. Please let me know how can I retrieve the "StatusFilterSelect" value through cgi object
<form name="frmStatusFilter" method="GET" action="http://webserver.com +:8010/cgi-bin/mycgi.pl"> Choose Filter:<select name="StatusFilterSelect" onChange="frmStatusFil +ter.submit()"> <option>Show with status</option> <option>Show all</option> </select> </form>
I am trying with the following, but not working Please help. Thanks in advance.
my $q = new CGI; my $status = $q->param('StatusFilterSelect'); $q->html("status is $status"); ## not showing any value
$status is not showing anything. Please assume I am not making any syntax error. Is this how to extract the value in chi perl. Is my approach right?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: How to extract a form data in cgi perl
by Corion (Patriarch) on May 02, 2012 at 16:19 UTC | |
by Sinistral (Monsignor) on May 02, 2012 at 20:49 UTC | |
Re: How to extract a form data in cgi perl
by thomas895 (Deacon) on May 03, 2012 at 00:16 UTC | |
Re: How to extract a form data in cgi perl
by Anonymous Monk on May 03, 2012 at 03:53 UTC | |
Re: How to extract a form data in cgi perl
by mendeepak (Scribe) on May 05, 2012 at 05:47 UTC |
Back to
Seekers of Perl Wisdom