Christian Kruse: Schreibweise verkürzen?

Beitrag lesen

Hallo Markus,

Hallo,
Ich übergebe in einem CGI Script 10 Parameter. Jetzt wollte ich die Schreibweise irgendwie abkürzen, dass ich nicht..

my $nick = $query->param('nick');
my $pass = $query->param('pass');
my $re_pass = $query->param('re_pass');
my $email = $query->param('email');
.
.

aus perldoc CGI:

IMPORTING ALL PARAMETERS INTO A NAMESPACE:

$query->import_names('R');

This creates a series of variables in the 'R' namespace.  For example, $R::foo,
       @R:foo.  For keyword lists, a variable @R::keywords will appear. If no namespace is
       given, this method will assume 'Q'.  WARNING:  don't import anything into 'main'; this
       is a major security risk!!!!

NOTE 1: Variable names are transformed as necessary into legal Perl variable names.
       All non-legal characters are transformed into underscores. If you need to keep the
       original names, you should use the param() method instead to access CGI variables by
       name.

NOTE 2: In older versions, this method was called import().  As of version 2.20, this
       name has been removed completely to avoid conflict with the built-in Perl module
       import operator.

Grüße,
 CK

--
Wenn du gehst, gehe. Wenn du sitzt, sitze. Und vor allem: schwanke nicht!