Help for this page

Select Code to Download


  1. or download this
    my %CountryCode = { 
       'com','Comercial', 
       'uk','The United Kingdom',
    }  # a hash of country name
    
  2. or download this
    my %CountryCode = (
       'com','Comercial',
       'uk','The United Kingdom'
    );
    
    # a hash of country names
    
  3. or download this
    if ($Country == $key){ #get the key of country name
       $CountryName = $CountryCode($key); #assign the key value to a varia
    +ble
    }