Changes for version 2.0
- Allow passing an arrayref of hashrefs through fdat (Mark Stosberg, Michael Graham)
- Several new shortcuts: (Mark Stosberg) Allow calling fill() as a class method as a shortcut. Allow \$html as shortcut for scalarref => \$html Allow \@html as shortcut for arrayref => \@html Allow \*html as shortcut for file => \*html Allow 'html' as shortcut for file => 'html' Allow $q as shortcut for fobject => $q Allow \%fdat as shortcut for fdat => \%fdat
- In summary, instead of this:
- my $fif = HTML::FillInForm->new; $fif->fill( scalarref => \$html, fdat => \%data );
- You can simply write:
- HTML::FillInForm->fill( \$html, \%data );
- Fixed disable_fields bug (Boris Zentner)
- Add support for ID attribute on form tags (name attribute is deprecated in xhtml) [rt.cpan.org #27376] (Anthony Ettinger)
Modules
Populates HTML Forms with data.