in reply to Passing variables via internet links

You can use the CGI module to access such parameters e.g.
use CGI; my $query = CGI->new; my $id = $query->param('id');
or
use CGI qw/:standard/; my $id = param('id');
Have you read ovid's tutorial on Web Programming Using Perl?

update: I've assumed you'll be using a CGI script in which case you'd typically pass the parameter like:

http://www.perlmonks.org/cgi-bin/test.cgi?id=1

Replies are listed 'Best First'.
Re^2: Passing variables via internet links
by cdherold (Monk) on Nov 20, 2006 at 00:09 UTC
    thanks! thought it'd be pretty easy! thanks also for the reference to the tutorial ...