Hey Phil --
> I'm glad to hear that you've used them together. After
> reading the FAQ again
> I can see how it would work, except for one thing: the CGI
> query object.
> CGI::Application isolates me from it, but HTML::Pager expects
> to receive it.
> How do I do that?
It's each to get the CGI.pm query object from a CGI::Application instance:
package MyApplication;
use base qw/CGI::Application/;
sub some_run_mode {
my $self = shift;
# Get the CGI.pm query object
my $q = $self->query();
# Etc....
}
Warmest regards,
-Jesse-
----
Jesse Erlbaum, CTO
Vanguard Media
212.242.5317 x115
[EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]