Home : Products : Gossamer Links : Development, Plugins and Globals :

Products: Gossamer Links: Development, Plugins and Globals: Re: [Canoon] Random Perl Global: Edit Log

Here is the list of edits for this post
Re: [Canoon] Random Perl Global
Try:

random =>
Code:
sub {
my @random = (0 .. 9, 'a' .. 'z', 'A' .. 'Z');
my $rand = '';
for (1 .. 8) {
$rand .= $random[rand @random];
}
return $rand;
}

Cheers,

Alex
--
Gossamer Threads Inc.

Last edited by:

Alex: Sep 27, 2001, 3:25 PM

Edit Log: