CGI-EZForm
view release on metacpan or search on metacpan
=item $form = CGI::EZForm->new;
Creates a new form:
In reality, this just creates a reference to a hash which will hold
the field values, so you can access particular form field values
directly, as in
$xyz = $form->{xyz};
providing you are not an OOP purist, I guess. (If you are, use the get
method.)
=item $form->set(PARAMS);
allows you to set value on one or more form fields. E.g.
$form->set(me => 'Tarzan', you => 'Jane');
Of course, you can just set individual fields using
( run in 0.805 second using v1.01-cache-2.11-cpan-748bfb374f4 )