Help for this page

Select Code to Download


  1. or download this
     
    foreach $play (@ranked) {
        if (($play->{track} ne '') && ($play->{track} ne 0)){
    ...
                 "$title$artist$play->{album}-$track");
        }
    }
    
  2. or download this
    open(REPORT, ">report.dat") || die("Can't open output file");
    @ranked = sort by_artist @hash;
    ...
        }
    }
    close(REPORT);