Help for this page

Select Code to Download


  1. or download this
    sub mysort {
            my ($direction) = @_;
    ...
            ($direction eq "DESC" ? -1 : 1);
    
    }
    
  2. or download this
    my $orderby = "age"; # or name, dob, etc
    my $direction = "ASC"; # or DESC
    ...
                    $sense;
            } 
    }