Help for this page

Select Code to Download


  1. or download this
    %hash = ( # george is added
          'george@host.com' => 'george',
    ...
          'george@host.com' => 'george',
          'bill@company.net' => 'bill',
    );
    
  2. or download this
    %hash = ( # george is added
          'email' => 'george',
    ...
    %hash = ( # bill is added
          'email' => 'bill',
    );
    
  3. or download this
    $this{$email} = $name;