(Top) < Caveat Coder | Model-View-Controller (MVC) Design Pattern > |
To access CGI.pm methods, e.g.
h2("This is a header"); p("And this is a paragraph"); |
you can access the CGI.pm query object, with query():
my $query = $self->query(); $output .= $query->h2("This is a header"); |
However, you may not want to do this...
CGI::Application (v.2.0) |
19 |