Hello all,
I want to first give a group thanks to everyone who helped me with my first
script. I used CGI.pm and everything works fine.
Now, I want to display on the screen all form parameters except 2. I tried
using:
my $query = CGI->new();
my @names = $query->param;
foreach my $name ( @names ) {
my @values = $query->param( $name );
$query ->delete ('emailreq','submit');
print $name . " = " . (join ", ", @values) . "<br>";
}
and that gave me this output:
name: Kim Forbes
email: [EMAIL PROTECTED]
emailreq:
submit:
The output I want is:
name: Kim Forbes
email: [EMAIL PROTECTED]
Thanks
Kim
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]