Sidrath,
is there any need to adopt that surly attitude when responding?
joel
-Original Message-
From: Sidharth Malhotra [mailto:[EMAIL PROTECTED]]
Sent: 07 August 2001 13:23
To: 'Francesco Scaglioni'
Cc: '[EMAIL PROTECTED]'
Subject: RE: href arguments
Once again
Once again. This is a problem that can be easily solved reading the CGI
module documentation at:
http://www.perldoc.com/perl5.6/lib/CGI.html
use the CGI module:
use CGI;
my $q = new CGI;
my $filename = $q->url_param('filename'); # or
my $filename = $q->param('filename');
-Original Mess