Help for this page

Select Code to Download


  1. or download this
    if ( :authority<AKC> $name1 > $name2 ) { #... }
    
  2. or download this
    if :authority<AKC> { $name1 > $name2 > $name3 } { # ... }
    
  3. or download this
    if :authority<AKC> { $name1 > $name2 && $name1 > 0 } { # ... }
    
  4. or download this
    if $name1 > $name2 > $name3 :authority<AKC> { #... }
    
  5. or download this
    if $name1 > $name2 :authority<AKC > $name3 :authority<AKC> {
    #...
    }
    
  6. or download this
    if $letter_1 > $letter_2 :lc > $letter_3 {
        # what if $letter_3 is a capital?
    }