Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
<form action="formpost.cgi?m=hello" method="post"> <textarea name="big"></textarea> <input type="hidden" name="large" value=1> <input type="hidden" name="transmit" value=1> <input type="submit" value="1"> </form>
Any ideas?#!/usr/bin/perl use CGI; $form = new CGI; print "Content-type: text/html\n\n"; print $form->param("big"); print $form->param("m");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems with CGI.pm
by merlyn (Sage) on Jul 15, 2005 at 15:42 UTC | |
|
Re: Problems with CGI.pm
by BUU (Prior) on Jul 15, 2005 at 22:27 UTC |