Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: CGI::Application Question

by elusion (Curate)
on May 19, 2003 at 02:22 UTC ( [id://259048]=note: print w/replies, xml ) Need Help??


in reply to CGI::Application Question

The easiest way to do this would be to add another parameter to the query string. In other words, request "index.pl?node=articles&n=15" or something like it. Then...
sub articles { my ($self) = @_; my $q = $self->query; # CGI query object my $n = $q->param('n'); # get article number ... # get and display the nth article }
Hope this helps,

elusion : http://matt.diephouse.com

Replies are listed 'Best First'.
Re: Re: CGI::Application Question
by debiandude (Scribe) on May 19, 2003 at 02:28 UTC
    Wow thanks. That worked right away.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://259048]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (7)
As of 2024-04-23 11:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found