#!perl -w # $ perl -Ilib example/synopsis.pl "foo=the value of foo" bar=a use strict; use HTML::FillInForm::Lite; use CGI; my $html = <<'EOD';
EOD print 'BEFORE:', $html; my $q = CGI->new(); $html = HTML::FillInForm::Lite->fill(\$html, $q); print 'AFTER:', $html;