Help for this page

Select Code to Download


  1. or download this
    my $country = $card->country;
    $country = '' if $country eq 'gbr';
    $country = uc("[$country]") if $country;
    
  2. or download this
    my $country = $card->country;
    if ($country and $country ne 'gbr') {
    ...
    } else {
        $country = '';
    }