Help for this page

Select Code to Download


  1. or download this
    
    %hash = ( 'george@foo.com' => 'george ); # how it is when george is ad
    +ded
    %hash = ('bill@host.com' => 'bill'); # bill clobbers george
    
  2. or download this
    %hash = (
          email => 'george@foo.com',
          name => 'geroge fubar',
          age    => 68,
    );
    
  3. or download this
    my $email = params('email');
    my $name = params('name');
    
    $hash{email} = $email;
    $hash{name} = $name;