You really shouldn't mix the functional-oriented and
object-oriented styles of CGI.pm - just use one. Since
you have already typed $query numerous times, just remove
qw/:standard/ from
use CGI;.
If you only need one CGI instance, the FO style is very
convienent and just looks cleaner, IMHO. The OO style goes
quite well with HTML::Template:
use strict;
use CGI;
use HTML::Template;
my $q = CGI->new();
my $template = HTML::Template->new(
filename => 'some.tmpl',
associate => $q,
);
# assign params to $template according to user input/validation
print $q->header, $template->output;
The OO style also works nice for changing the behavior of
CGI.pm, such as this silly example which changes the
<h1> tag to 42:
use strict;
my $q = My::CGI->new;
print $q->h1('hello world'),$/;
package My::CGI;
use base qw(CGI);
sub h1 { "<42>$_[1]</42>" }
jeffa
perl -MCGI=foo -le "print foo{bar=>baz},qux"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.