Help for this page

Select Code to Download


  1. or download this
        # Load the keywords used
        my $terms = '';
        if ($s->{terms}) {
            $terms = join ' ', @{$s->{terms}};
        }
    
  2. or download this
        # Load the keywords used
        my $terms = 'some default value';
        if ($s->{terms}) {
            $terms = join ' ', @{$s->{terms}};
        }