in reply to Re: Re: Re: Re: Best method for dynamic page generation?
in thread Best method for dynamic page generation?
it's sort-of a subclass of CGI. it provides you a way to *organize* your run-modes ( actions ) in your application with a defined set of parameters and matching subroutines. something like:
and later in your module:"foo_action" => \&foo(), "bar_action" => \&bar()
it's something i used to do by hand. CGI::Application organizes it a bit more, and makes it a touch easier to come back to and debug, esp. if you're not the original coder.sub foo { my $self = shift; # do stuff }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: Best method for dynamic page generation?
by stonecolddevin (Parson) on Jan 04, 2004 at 06:03 UTC | |
by geektron (Curate) on Jan 04, 2004 at 22:47 UTC | |
by stonecolddevin (Parson) on Jan 05, 2004 at 03:42 UTC |