anykey has asked for the wisdom of the Perl Monks concerning the following question:
use HTML::Form; $v="http://search.cpan.org"; $uv=""; $form = HTML::Form->parse($uv, $v); if (defined($form)) {print $form->dump;}else {print "form is undefined\n";} exit 0;
always yields "form is undefined".
q1. what should the first argument in parse() be set to? Can't find it in the doc.
q2. Will setting this value properly define $form? If not, what will?
Thank you.
20050216 Janitored by Corion: Added code tags
2005-02-16 Edited by Arunbear: Changed title from 'html::form', as per Monastery guidelines
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to use HTML::Form
by moot (Chaplain) on Feb 16, 2005 at 03:29 UTC | |
|
Re: How to use HTML::Form
by PodMaster (Abbot) on Feb 16, 2005 at 03:37 UTC | |
|
Re: How to use HTML::Form
by anykey (Initiate) on Feb 16, 2005 at 14:52 UTC |