RE: href arguments

2001-08-07 Thread Joel Hughes
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

RE: href arguments

2001-08-07 Thread Sidharth Malhotra
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