Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
It doesn't work allthough I have done same thing exactly the same way earlier. error.log says Undefined subroutine &main::Tr called at /DOCS/Department/SG/cgi-bin/Projects/projects.pl line 167. So, does anyone have any good guess, what's wrong?print $query->header(), $query->start_html('XX'); print $query->start_form(-method=>'post', -action=>'program.pl'); print $query->table( $query->Tr( # line 167 $query->td(...) ), ... ); print $query->end_form(); print $query->end_html();
use CGI qw(:standard); my $query = new CGI;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems with creating a form
by Masem (Monsignor) on Mar 12, 2001 at 19:38 UTC | |
by mirod (Canon) on Mar 12, 2001 at 19:52 UTC | |
by merlyn (Sage) on Mar 12, 2001 at 20:10 UTC | |
by Anonymous Monk on Mar 12, 2001 at 20:30 UTC |