peacemaker1820 has asked for the wisdom of the Perl Monks concerning the following question:
print "HTTP/1.0 200 OK\n"; print "Content-Type: text/html\n\n"; use warnings; use CGI; use HTML::FillInForm; my $q = new CGI; my $fif = new HTML::FillInForm; #name of the form to populate #(in the same directory for testing purposes) my $html = "name1.htm"; #Fill in the necessary parameters... $q->param("name" , "Ted Burns"); my $output = $fif->fill(scalarref => \$html, fobject=>$q); #print the form with values in the fields print $output; ####### END
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Pre-Populate HTML form
by bart (Canon) on Jan 22, 2003 at 17:50 UTC | |
by peacemaker1820 (Pilgrim) on Jan 23, 2003 at 16:53 UTC | |
by Aristotle (Chancellor) on Jan 23, 2003 at 20:32 UTC | |
|
Re: Pre-Populate HTML form
by linebacker (Scribe) on Jan 22, 2003 at 20:12 UTC | |
by Aristotle (Chancellor) on Jan 22, 2003 at 22:18 UTC | |
|
Re: Pre-Populate HTML form
by OM_Zen (Scribe) on Jan 22, 2003 at 20:22 UTC |