F
FrankB
Hello,
when creating a form with CGI.pm, no matter if it is
use CGI;
$q = new CGI qw /:all -debug/;
print header and start the html etc..
print $q->start_form; OR
print $q->start_multipart_form();
print $q->textfield('blah');
print $q->end_form;
#etc..
it *always* returns an obsolete trailing HTML "<div></div>" container
before the closing tag of the form.
Any ideas ? It seems not to be
a known issue.
(Perl 5.8.1 on linux)
when creating a form with CGI.pm, no matter if it is
use CGI;
$q = new CGI qw /:all -debug/;
print header and start the html etc..
print $q->start_form; OR
print $q->start_multipart_form();
print $q->textfield('blah');
print $q->end_form;
#etc..
it *always* returns an obsolete trailing HTML "<div></div>" container
before the closing tag of the form.
Any ideas ? It seems not to be
a known issue.
(Perl 5.8.1 on linux)