On Wed, 2 Oct 2002 07:43:58 -0700 (PDT), [EMAIL PROTECTED] (Yahaya
Mohammed) wrote:

> Note: forwarded message attached.

Your method of forwarding attached messages makes it difficult to
cut-n-paste comments in. In the future, put the message in the 
message body .

Anyways, since you are just learning, your method is
referred to as "the old perl4 cgi-lib" subroutine, and
is widely frowned upon now. The following is one of the
newer methods.
#######################################################
#!/usr/bin/perl 
use warnings;
use strict;
use CGI;
my $cgi=new CGI;
my %in = $cgi->Vars();
foreach my $key (keys %in){
   print "$key\t$in{$key}\n";
   }
######################################################





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to